summaryrefslogtreecommitdiffhomepage
path: root/compat
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-11-22 16:34:39 +0100
committerStanislaw Halik <sthalik@misaki.pl>2023-11-22 16:34:39 +0100
commitb943080e91d0e353d3bf857eab1fb7016179c1f8 (patch)
treefdceb7e479a586560da55fd3588000f379d8ced0 /compat
parent4c85fde68f0819aaf2663f23c8a6d5496ae389c6 (diff)
b
Diffstat (limited to 'compat')
-rw-r--r--compat/assert.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/compat/assert.hpp b/compat/assert.hpp
index b7fb2fe9..cce97d8e 100644
--- a/compat/assert.hpp
+++ b/compat/assert.hpp
@@ -97,8 +97,8 @@
<< "fatal:" \
<< Debug::resetColor \
<< " assertion failed: " << #__VA_ARGS__; \
- DBG_nospace << " expected: " << b; \
- DBG_nospace << " actual: " << a; \
+ DBG_nospace << " expected: " << a; \
+ DBG_nospace << " actual: " << b; \
fm_EMIT_ABORT(); \
} \
})(__VA_ARGS__)