summary refs log tree commit diff stats
path: root/lib/nimbase.h
diff options
context:
space:
mode:
authorSimon Hafner <hafnersimon@gmail.com>2013-05-18 15:55:23 -0500
committerSimon Hafner <hafnersimon@gmail.com>2013-05-18 15:58:11 -0500
commite88c1799824dd366b77affc11ab21a3257a46933 (patch)
tree8318a163f6798da72d45e4deabf8ac5094ee53d1 /lib/nimbase.h
parent1d4bc6e63035eca8f15d6a0ea0fb176991396cdb (diff)
downloadNim-e88c1799824dd366b77affc11ab21a3257a46933.tar.gz
nimbase.h doesn't need signal.h
Diffstat (limited to 'lib/nimbase.h')
-rw-r--r--lib/nimbase.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/nimbase.h b/lib/nimbase.h
index fcbf80fc3..f47ab4d29 100644
--- a/lib/nimbase.h
+++ b/lib/nimbase.h
@@ -481,6 +481,5 @@ static inline void GCGuard (void *ptr) { asm volatile ("" :: "X" (ptr)); }
 #  define GC_GUARD
 #endif
 
-typedef int assert_numbits[sizeof(NI) == sizeof(void*) &&
-                           NIM_INTBITS == sizeof(NI)*8 ? 1 : -1];
+typedef int assert_numbits[sizeof(NI) == sizeof(void*) && NIM_INTBITS == sizeof(NI)*8 ? 1 : -1];
 #endif