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 | 15ebe8e5ad0730b9ac95e6210798aa9008f001d3 (patch) | |
tree | 3ac9bc3aec4a179e35030cf4c60c479e4ada7d07 | |
parent | 954286029633ab21387a3e9dc7f1dfb1bd1108e2 (diff) |
Fixes from Loic Le Loarer <loic.le-loarer@polytechnique.org>
-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)) |