diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-30 00:18:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-30 00:18:11 +0300 |
commit | 4029b40e800eb8654e6896576c521137835c55e2 (patch) | |
tree | 42403c484bf2112db5c5627a01371743919fdd0a /src/debug.h | |
parent | 0c97cbd3ab4a6f425e42c2413d7dfe06c2da014e (diff) | |
download | plus-4029b40e800eb8654e6896576c521137835c55e2.tar.gz plus-4029b40e800eb8654e6896576c521137835c55e2.tar.bz2 plus-4029b40e800eb8654e6896576c521137835c55e2.tar.xz plus-4029b40e800eb8654e6896576c521137835c55e2.zip |
Move report defines from debug.h into checkutils.h
Diffstat (limited to 'src/debug.h')
-rw-r--r-- | src/debug.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/debug.h b/src/debug.h index 6cbd61941..8e207abf5 100644 --- a/src/debug.h +++ b/src/debug.h @@ -27,20 +27,8 @@ // #define _DEBUG_NEW_EMULATE_MALLOC 1 #include "debug/debug_new.h" -#define reportFalse(val) reportFalse1(val, __FILE__, __LINE__) -#define reportFalse1(val, file, line) reportFalseReal(val, file, line) - -#define reportTrue(val) reportTrue1(val, __FILE__, __LINE__) -#define reportTrue1(val, file, line) reportTrueReal(val, file, line) - -#else // ENABLE_MEM_DEBUG - -#define reportFalse(val) (val) -#define reportTrue(val) (val) - #endif // ENABLE_MEM_DEBUG - #ifdef DEBUG_SDL_SURFACES #define MIMG_LoadPNG_RW(src) FakeIMG_LoadPNG_RW(src, __FILE__, __LINE__) |