summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2025-11-22 12:46:40 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2025-11-22 12:46:40 +0100
commitb5f7ff1e1335734a237acc480ceb99db148cf8fd (patch)
treef1b5bf8b369aa74ec6579dc6dc52d34e90867df6 /modules
parent36de95682200f3d1404951900b7d7089fefc62cc (diff)
downloadforstio-forstio-b5f7ff1e1335734a237acc480ceb99db148cf8fd.tar.gz
Change boolean to expressive version
Diffstat (limited to 'modules')
-rw-r--r--modules/core/c++/test/suite.hpp2
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}};\
}