From fed87eedaab2e58d4dbd89d10765e26e882c416b Mon Sep 17 00:00:00 2001 From: Steven Noonan Date: Tue, 13 Oct 2009 03:19:13 -0700 Subject: debug.h: add #ifdef for __MSL__ macro I still don't know what this macro is, but '#if __MSL__' doesn't make any sense without it defined, so we can ifdef it out. Signed-off-by: Steven Noonan --- crawl-ref/source/debug.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'crawl-ref/source/debug.h') diff --git a/crawl-ref/source/debug.h b/crawl-ref/source/debug.h index a147731d74..9865993279 100644 --- a/crawl-ref/source/debug.h +++ b/crawl-ref/source/debug.h @@ -20,9 +20,11 @@ #endif // Synch with MSL definitions. +#ifdef __MSL__ #if __MSL__ && DEBUG != defined(MSIPL_DEBUG_MODE) #error DEBUG and MSIPL_DEBUG_MODE are out of sync! #endif +#endif // Synch with MSVC. #ifdef TARGET_COMPILER_VC -- cgit v1.2.3-54-g00ecf