diff --git a/CMakeLists.txt b/CMakeLists.txt index 902085a..464b22a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.20) include(cmake/color.cmake) -set(BLT_VERSION 0.16.21) +set(BLT_VERSION 0.16.22) set(BLT_TEST_VERSION 0.0.1) set(BLT_TARGET BLT) diff --git a/include/blt/std/assert.h b/include/blt/std/assert.h index be8ff2b..4cd648f 100644 --- a/include/blt/std/assert.h +++ b/include/blt/std/assert.h @@ -21,7 +21,7 @@ namespace blt /** * Prints error with stack trace if assertion fails. Does not stop execution. */ -#define blt_assert(expr) do {static_cast(expr) ? void(0) : blt::b_assert_failed(#expr, nullptr, __FILE__, __LINE__) } while (0) +#define blt_assert(expr) do {static_cast(expr) ? void(0) : blt::b_assert_failed(#expr, nullptr, __FILE__, __LINE__); } while (0) /** * Prints error with stack trace if assertion fails. Will print fail_message after * the assertion expression but before the stack trace. Does not stop execution.