diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-10-09 10:56:50 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-10-09 10:56:50 +0200 |
commit | e12dea8a222324bcdfe6e96bc9ce4cc979c6da47 (patch) | |
tree | 63206e825299739430c57d6a1be704c84ada907c /compat/assert.hpp | |
parent | e6628e153b9636efac8b1f5d5a2f8046cba44da6 (diff) |
a
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(); \ |