diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-11-23 07:39:21 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-11-23 07:39:24 +0100 |
commit | f3468efd271b6a943d201886ca30bfc81b16670c (patch) | |
tree | 9c939bac30153321ca23ba0d3e59b0da9e571860 /compat | |
parent | 8ea6924dda8d452bd870302a2c4e96f437ee5443 (diff) |
b
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 683b9e72..73e1d376 100644 --- a/compat/assert.hpp +++ b/compat/assert.hpp @@ -92,11 +92,11 @@ { \ if (a != b) [[unlikely]] \ { \ - DBG_nospace << Debug::color(Debug::Color::Red) \ + DBG_nospace << Debug::color(Debug::Color::Magenta) \ << "fatal:" \ << Debug::resetColor << " " \ << "Equality assertion failed at " \ - << __FILE__ << ":" << __LINE__ << ":"; \ + << __FILE__ << ":" << __LINE__; \ DBG_nospace << #__VA_ARGS__; \ DBG_nospace << " expected: " << a; \ DBG_nospace << " actual: " << b; \ |