Changeset 2083
- Timestamp:
- 04/13/07 18:20:00 (2 years ago)
- Files:
-
- trunk/include/iprt/assert.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/include/iprt/assert.h
r1454 r2083 79 79 */ 80 80 #ifdef __GNUC__ 81 # define AssertCompile(expr) extern int RTASSERTVAR[ (expr) ? 1 : 0] __attribute__((unused))81 # define AssertCompile(expr) extern int RTASSERTVAR[1] __attribute__((unused)), RTASSERTVAR[(expr) ? 1 : 0] __attribute__((unused)) 82 82 #else 83 83 # define AssertCompile(expr) typedef int RTASSERTTYPE[(expr) ? 1 : 0]

