mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-14 01:58:25 +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__
|
#ifdef __GNUC__
|
||||||
#define DEBUG_UNREACHABLE_MARKER() __builtin_unreachable()
|
#define DEBUG_UNREACHABLE_MARKER() __builtin_unreachable()
|
||||||
#elif __defined__(_MSC_VER)
|
#elif defined(_MSC_VER)
|
||||||
#define DEBUG_UNREACHABLE_MARKER() __assume(0)
|
#define DEBUG_UNREACHABLE_MARKER() __assume(0)
|
||||||
#else
|
#else
|
||||||
#define DEBUG_UNREACHABLE_MARKER()
|
#define DEBUG_UNREACHABLE_MARKER()
|
||||||
|
Loading…
Reference in New Issue
Block a user