summaryrefslogtreecommitdiffhomepage
path: root/compat/exception.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-02-06 03:42:19 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-02-06 03:52:00 +0100
commit9b0a439d42b4a6fa8d4c457c953b71d7938aaa37 (patch)
tree6e65b8775c397196e31762e6cbd39b5f6703c9e2 /compat/exception.hpp
parentb25289daa8349f21b2b64a0fbaf331dc94753c8c (diff)
add NOLINT for assert macros
Diffstat (limited to 'compat/exception.hpp')
-rw-r--r--compat/exception.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/exception.hpp b/compat/exception.hpp
index dcc5ee5f..8a5f34fb 100644
--- a/compat/exception.hpp
+++ b/compat/exception.hpp
@@ -31,7 +31,7 @@ exception::exception(const Fmt& fmt, Ts&&... args) noexcept
#define fm_soft_assert(...) \
do { \
- if (!(__VA_ARGS__)) \
+ if (!(__VA_ARGS__)) /*NOLINT(*-simplify-boolean-expr)*/ \
{ \
if (std::is_constant_evaluated()) \
throw ::floormat::base_exception{}; \