mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-08-05 10:14:04 +00:00
[common] debug: fix incorrect use of #elif defined
This commit is contained in:
@@ -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()
|
||||
|
Reference in New Issue
Block a user