diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-10-09 08:19:23 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-10-09 08:19:23 +0200 |
commit | 003b0bf828408e8b95ccab404f0c7fca0d7de362 (patch) | |
tree | 37612f496c9bc3471d69db9949ff41248517e907 /compat | |
parent | 92124b599a4de4ea072bc80156bd7d1da53d2ef4 (diff) |
a
Diffstat (limited to 'compat')
-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 d9ff2cbe..6e7ef5c0 100644 --- a/compat/assert.hpp +++ b/compat/assert.hpp @@ -92,8 +92,8 @@ { \ if (a != b) [[unlikely]] \ { \ - DBG_nospace << "fatal: '" << a << "' != '" << b \ - << "' in " << __FILE__ << ":" << __LINE__; \ + DBG_nospace << "fatal: " << a << " != " << b \ + << " in " << __FILE__ << ":" << __LINE__; \ fm_EMIT_ABORT(); \ } \ })(__VA_ARGS__) |