diff options
Diffstat (limited to 'compat/assert.hpp')
-rw-r--r-- | compat/assert.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compat/assert.hpp b/compat/assert.hpp index a40e23dd..2163c736 100644 --- a/compat/assert.hpp +++ b/compat/assert.hpp @@ -93,8 +93,8 @@ if (a != b) [[unlikely]] \ { \ DBG_nospace << "assertion failed: fm_assert_equal(" \ - << #__VA_ARGS__ << ") in " \ - << __FILE__ << ":" << __LINE__; \ + << #__VA_ARGS__ << ")"; \ + DBG_nospace << "in" << __FILE__ << ":" << __LINE__; \ DBG_nospace << " expected: " << a; \ DBG_nospace << " actual: " << b; \ fm_EMIT_ABORT(); \ |