diff options
author | Björn Gustavsson <[email protected]> | 2011-12-29 10:34:37 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-01-11 08:39:56 +0100 |
commit | b53fc3c306f02108f07fa3870bd2555ae8bb17b2 (patch) | |
tree | 9d272c40155c503201144e46f35c88b2f31846ad /lib/compiler/src/v3_kernel.erl | |
parent | 9123f869e20c38307280838a69758842fc6b9791 (diff) | |
download | otp-b53fc3c306f02108f07fa3870bd2555ae8bb17b2.tar.gz otp-b53fc3c306f02108f07fa3870bd2555ae8bb17b2.tar.bz2 otp-b53fc3c306f02108f07fa3870bd2555ae8bb17b2.zip |
v3_kernel.hrl: Remove unused record #k_string{}
Diffstat (limited to 'lib/compiler/src/v3_kernel.erl')
-rw-r--r-- | lib/compiler/src/v3_kernel.erl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/compiler/src/v3_kernel.erl b/lib/compiler/src/v3_kernel.erl index b3153e420f..31829ab9bd 100644 --- a/lib/compiler/src/v3_kernel.erl +++ b/lib/compiler/src/v3_kernel.erl @@ -608,7 +608,6 @@ is_atomic(#k_int{}) -> true; is_atomic(#k_float{}) -> true; is_atomic(#k_atom{}) -> true; %%is_atomic(#k_char{}) -> true; %No characters -%%is_atomic(#k_string{}) -> true; is_atomic(#k_nil{}) -> true; is_atomic(#k_var{}) -> true; is_atomic(_) -> false. @@ -1825,7 +1824,6 @@ lit_list_vars(Ps) -> pat_vars(#k_var{name=N}) -> {[],[N]}; %%pat_vars(#k_char{}) -> {[],[]}; -%%pat_vars(#k_string{}) -> {[],[]}; pat_vars(#k_literal{}) -> {[],[]}; pat_vars(#k_int{}) -> {[],[]}; pat_vars(#k_float{}) -> {[],[]}; |