diff options
author | Björn Gustavsson <[email protected]> | 2010-09-21 08:46:50 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-07-06 14:33:30 +0200 |
commit | 87a7b7f382650519bc1b021a2bf44093658982bc (patch) | |
tree | 53c1c2d1f89dd1ee18568e231a6c8d4868d97539 /lib/compiler/src/erl_bifs.erl | |
parent | 47dec87a8b9c3a29a6ae48a7712aef66275e546a (diff) | |
download | otp-87a7b7f382650519bc1b021a2bf44093658982bc.tar.gz otp-87a7b7f382650519bc1b021a2bf44093658982bc.tar.bz2 otp-87a7b7f382650519bc1b021a2bf44093658982bc.zip |
Remove deprecated concat_binary/1
concat_binary/1 was deprecated in R13B04, but already in
the R10B-2 release, the documentation recommends using
list_to_binary/1 instead.
Diffstat (limited to 'lib/compiler/src/erl_bifs.erl')
-rw-r--r-- | lib/compiler/src/erl_bifs.erl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/compiler/src/erl_bifs.erl b/lib/compiler/src/erl_bifs.erl index f8128702dd..2514c06360 100644 --- a/lib/compiler/src/erl_bifs.erl +++ b/lib/compiler/src/erl_bifs.erl @@ -72,7 +72,6 @@ is_pure(erlang, binary_to_list, 1) -> true; is_pure(erlang, binary_to_list, 3) -> true; is_pure(erlang, bit_size, 1) -> true; is_pure(erlang, byte_size, 1) -> true; -is_pure(erlang, concat_binary, 1) -> true; is_pure(erlang, element, 2) -> true; is_pure(erlang, float, 1) -> true; is_pure(erlang, float_to_list, 1) -> true; |