diff options
author | ReneSac <reneduani@yahoo.com.br> | 2014-04-06 14:20:51 -0300 |
---|---|---|
committer | ReneSac <reneduani@yahoo.com.br> | 2014-04-06 14:20:51 -0300 |
commit | 83661492e72cba09078ed0a846789228543c29a9 (patch) | |
tree | d6fe35e4bff70317dc392ed67aa1b7647f0ca025 | |
parent | a4559ab17e281b4fbbdb182fb8ba4e3d8a9c311c (diff) | |
download | Nim-83661492e72cba09078ed0a846789228543c29a9.tar.gz |
Fix typo in previous commit.
-rw-r--r-- | lib/nimbase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/nimbase.h b/lib/nimbase.h index b16b27b2c..cfd33dca1 100644 --- a/lib/nimbase.h +++ b/lib/nimbase.h @@ -376,7 +376,7 @@ static inline void GCGuard (void *ptr) { asm volatile ("" :: "X" (ptr)); } # define GC_GUARD #endif -/* Test to see if nimrod and the C compiler agrees on the size of a pointer. +/* Test to see if nimrod and the C compiler agree on the size of a pointer. On disagreement, your C compiler will say something like: "error: 'assert_numbits' declared as an array with a negative size" */ typedef int assert_numbits[sizeof(NI) == sizeof(void*) && NIM_INTBITS == sizeof(NI)*8 ? 1 : -1]; |