diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-11-22 12:46:40 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-11-22 12:46:40 +0100 |
| commit | b5f7ff1e1335734a237acc480ceb99db148cf8fd (patch) | |
| tree | f1b5bf8b369aa74ec6579dc6dc52d34e90867df6 | |
| parent | 36de95682200f3d1404951900b7d7089fefc62cc (diff) | |
| download | forstio-forstio-b5f7ff1e1335734a237acc480ceb99db148cf8fd.tar.gz | |
Change boolean to expressive version
| -rw-r--r-- | modules/core/c++/test/suite.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/c++/test/suite.hpp b/modules/core/c++/test/suite.hpp index 52ef71d..7be7e87 100644 --- a/modules/core/c++/test/suite.hpp +++ b/modules/core/c++/test/suite.hpp @@ -38,7 +38,7 @@ public: void SAW_UNIQUE_NAME(test_case)::run() #define SAW_EXPECT(expr, msg_split) \ - if( ! (expr) ){ \ + if( not (expr) ){ \ auto msg = msg_split; \ throw std::runtime_error{std::string{msg}};\ } |
