From ef829b02e91bdf1612a54d4b62dfd377bc68a35e Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Tue, 28 May 2024 11:54:12 +0200 Subject: [PATCH] assert: fix to compile Release versions Signed-off-by: Simon Rozman --- include/stdex/assert.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/stdex/assert.hpp b/include/stdex/assert.hpp index 743702b20..9a4b25905 100644 --- a/include/stdex/assert.hpp +++ b/include/stdex/assert.hpp @@ -25,7 +25,6 @@ #error Implement! #endif #define stdex_verify(e) stdex_assert(e) -#endif namespace stdex { @@ -65,3 +64,4 @@ namespace stdex #endif /// \endcond } +#endif