diff options
author | Hans Bolinder <[email protected]> | 2010-04-09 09:38:44 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-04-09 09:38:44 +0000 |
commit | d26d7db828416ffc4c9cc02b8c756e53aa144d3a (patch) | |
tree | a7a48dfcf8f8fb06c4ce1d2d4221359417822462 /lib/hipe/cerl | |
parent | 4e23ebfc898ff24a885257430269466dadca9510 (diff) | |
download | otp-d26d7db828416ffc4c9cc02b8c756e53aa144d3a.tar.gz otp-d26d7db828416ffc4c9cc02b8c756e53aa144d3a.tar.bz2 otp-d26d7db828416ffc4c9cc02b8c756e53aa144d3a.zip |
OTP-8562 Closing right parenthesis in macro definitions is mandatory.
When defining macros the closing right parenthesis before the dot is now
mandatory.
Diffstat (limited to 'lib/hipe/cerl')
-rw-r--r-- | lib/hipe/cerl/erl_types.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hipe/cerl/erl_types.erl b/lib/hipe/cerl/erl_types.erl index b4d80d359a..f3b91b3953 100644 --- a/lib/hipe/cerl/erl_types.erl +++ b/lib/hipe/cerl/erl_types.erl @@ -322,7 +322,7 @@ -define(nil, #c{tag=?nil_tag}). -define(nonempty_list(Types, Term),?list(Types, Term, ?nonempty_qual)). -define(number(Set, Qualifier), #c{tag=?number_tag, elements=Set, - qualifier=Qualifier}. + qualifier=Qualifier}). -define(opaque(Optypes), #c{tag=?opaque_tag, elements=Optypes}). -define(product(Types), #c{tag=?product_tag, elements=Types}). -define(remote(RemTypes), #c{tag=?remote_tag, elements=RemTypes}). |