mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-12 20:27:53 +00:00
[common] debug: fix incorrect use of #elif defined
This commit is contained in:
parent
12840a8324
commit
778d27f08a
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue