summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoryuzubot <yuzu@yuzu-emu.org>2019-09-22 14:11:58 +0000
committeryuzubot <yuzu@yuzu-emu.org>2019-09-22 14:11:58 +0000
commit6fdc3a71dcf0bea665f09c029670983fa8864ab2 (patch)
tree2a508cad48ca3c10fb254a27e1f20dbd263ee6b8 /src
parentb835d7631102fbf2a20e916d06e9a672425f3dbf (diff)
"Merge PR 1340"mainline-672
Diffstat (limited to 'src')
-rw-r--r--src/common/assert.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/common/assert.h b/src/common/assert.h
index 4b0e3f64ee..be73a7e1ba 100644
--- a/src/common/assert.h
+++ b/src/common/assert.h
@@ -28,18 +28,14 @@ __declspec(noinline, noreturn)
}
#define ASSERT(_a_) \
- do \
- if (!(_a_)) { \
- assert_noinline_call([] { LOG_CRITICAL(Debug, "Assertion Failed!"); }); \
- } \
- while (0)
+ if (!(_a_)) { \
+ LOG_CRITICAL(Debug, "Assertion Failed!"); \
+ }
#define ASSERT_MSG(_a_, ...) \
- do \
- if (!(_a_)) { \
- assert_noinline_call([&] { LOG_CRITICAL(Debug, "Assertion Failed!\n" __VA_ARGS__); }); \
- } \
- while (0)
+ if (!(_a_)) { \
+ LOG_CRITICAL(Debug, "Assertion Failed! " __VA_ARGS__); \
+ }
#define UNREACHABLE() ASSERT_MSG(false, "Unreachable code!")
#define UNREACHABLE_MSG(...) ASSERT_MSG(false, __VA_ARGS__)