mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-09 16:18:20 +00:00
[common] debug: fix incorrect use of #elif defined
This commit is contained in:
parent
12840a8324
commit
778d27f08a
@ -59,7 +59,7 @@ void printBacktrace(void);
|
||||
|
||||
#ifdef __GNUC__
|
||||
#define DEBUG_UNREACHABLE_MARKER() __builtin_unreachable()
|
||||
#elif __defined__(_MSC_VER)
|
||||
#elif defined(_MSC_VER)
|
||||
#define DEBUG_UNREACHABLE_MARKER() __assume(0)
|
||||
#else
|
||||
#define DEBUG_UNREACHABLE_MARKER()
|
||||
|
Loading…
Reference in New Issue
Block a user