diff options
author | Sam Spilsbury <smspillaz@gmail.com> | 2016-04-24 17:40:14 +0200 |
---|---|---|
committer | Sam Spilsbury <smspillaz@gmail.com> | 2016-04-24 17:40:14 +0200 |
commit | ef6873980eb3854d351c319514fca4116165283c (patch) | |
tree | 985c95fc710bac1e6ea7893b9c36d0049480094b /src/common | |
parent | CMakeLists: Use imported version of Threads::Threads (diff) | |
download | yuzu-ef6873980eb3854d351c319514fca4116165283c.tar yuzu-ef6873980eb3854d351c319514fca4116165283c.tar.gz yuzu-ef6873980eb3854d351c319514fca4116165283c.tar.bz2 yuzu-ef6873980eb3854d351c319514fca4116165283c.tar.lz yuzu-ef6873980eb3854d351c319514fca4116165283c.tar.xz yuzu-ef6873980eb3854d351c319514fca4116165283c.tar.zst yuzu-ef6873980eb3854d351c319514fca4116165283c.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/assert.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/assert.h b/src/common/assert.h index d7f19f5eb..cd9b819a9 100644 --- a/src/common/assert.h +++ b/src/common/assert.h @@ -39,7 +39,7 @@ static void assert_noinline_call(const Fn& fn) { }); } while (0) #define UNREACHABLE() ASSERT_MSG(false, "Unreachable code!") -#define UNREACHABLE_MSG(_a_, ...) ASSERT_MSG(false, _a_, __VA_ARGS__) +#define UNREACHABLE_MSG(...) ASSERT_MSG(false, __VA_ARGS__) #ifdef _DEBUG #define DEBUG_ASSERT(_a_) ASSERT(_a_) |