diff options
author | mjendrusch <Jendrusch@stud.uni-heidelberg.de> | 2016-04-17 17:10:24 +0200 |
---|---|---|
committer | mjendrusch <Jendrusch@stud.uni-heidelberg.de> | 2016-04-17 17:10:24 +0200 |
commit | 174205bcae62e3c954096a2ff557ad2184ad9817 (patch) | |
tree | 8ae8a4808fe2d748364ab014d5cf206fa3bfd6f7 /lib/nimbase.h | |
parent | 7f7fc35a0edbe94056a5ad8c442c577f0a1ce7be (diff) | |
download | Nim-174205bcae62e3c954096a2ff557ad2184ad9817.tar.gz |
Fixes #4093
Added COMMA macro to nimbase.h, changed code generation for c++ template types to insert COMMA im between the arguments, instead of ",".
Diffstat (limited to 'lib/nimbase.h')
-rw-r--r-- | lib/nimbase.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/nimbase.h b/lib/nimbase.h index 5a4f403b6..f531f3c49 100644 --- a/lib/nimbase.h +++ b/lib/nimbase.h @@ -222,6 +222,8 @@ __clang__ /* ----------------------------------------------------------------------- */ +#define COMMA , + #include <limits.h> #include <stddef.h> |