add compiletimeassert.h

This commit is contained in:
leitner 2013-02-22 11:00:32 +00:00
parent dfb4915f0a
commit 37013d414b
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,6 @@
0.30:
add compiletimeassert.h
0.29:
save 8 bytes in taia.h for 64-bit systems
add buffer_tosa (buffer writing to auto-growing stralloc)

4
compiletimeassert.h Normal file
View File

@ -0,0 +1,4 @@
#define __X(x, y) x ## y
#define __Y(x, y) __X(x, y)
#define compiletimeassert(cond) struct __Y(foo,__LINE__) { char __temp[1 - (!(cond))*2]; };