assert: do not crash on unimplemented code in debug build
This commit is contained in:
parent
4befbddc34
commit
e004e9505e
|
@ -52,5 +52,5 @@ __declspec(noinline, noreturn)
|
|||
#define DEBUG_ASSERT_MSG(_a_, _desc_, ...)
|
||||
#endif
|
||||
|
||||
#define UNIMPLEMENTED() DEBUG_ASSERT_MSG(false, "Unimplemented code!")
|
||||
#define UNIMPLEMENTED() LOG_CRITICAL(Debug, "Unimplemented code!")
|
||||
#define UNIMPLEMENTED_MSG(_a_, ...) ASSERT_MSG(false, _a_, __VA_ARGS__)
|
||||
|
|
Reference in New Issue