diff options
author | Stef Walter <stef@memberwebs.com> | 2005-09-28 15:22:26 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2005-09-28 15:22:26 +0000 |
commit | 131d21a4f9a2758d43344a3446c6812abd58216b (patch) | |
tree | da6dc0b110f7d49128da95f890c90810c7794a83 /common | |
parent | bb8e9da13a516f55008b6a69636640374a92ec6f (diff) |
Fixes from Loic Le Loarer <loic.le-loarer@polytechnique.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/usuals.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/usuals.h b/common/usuals.h index 48d372f..99951d7 100644 --- a/common/usuals.h +++ b/common/usuals.h @@ -66,9 +66,9 @@ #ifdef _DEBUG #include "assert.h" - #define ASSERT assert + #define ASSERT(x) assert(x) #else - #define ASSERT + #define ASSERT(x) #endif #define KL(s) ((sizeof(s) - 1) / sizeof(char)) |