diff options
| author | bunnei <bunneidev@gmail.com> | 2016-04-25 09:08:25 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2016-04-25 09:08:25 -0400 |
| commit | 28de7f584e25269a4914a6d11b000f7e817cc1b4 (patch) | |
| tree | e691188c0807876d339546e14e41cb916ed24c0e /src/common/assert.h | |
| parent | 0964a3ff530f2eb5b7ecdf9dfbb74deea890352d (diff) | |
| parent | 599dc2bbb5e7325b9baa8d55ef17915dd283173d (diff) | |
Merge pull request #1714 from smspillaz/fix-1711
Fixes for #1711 and other compilation errors.
Diffstat (limited to 'src/common/assert.h')
| -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_) |
