From 9c7aa9b8a3819217eb53019a27a7cb3ef64c1b40 Mon Sep 17 00:00:00 2001 From: EndrII Date: Mon, 22 Mar 2021 21:08:46 +0300 Subject: [PATCH] fix release builds --- global.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.h b/global.h index 78ccefd..351d1eb 100644 --- a/global.h +++ b/global.h @@ -135,7 +135,7 @@ uint8_t static_type_hash_8(T& object) noexcept { // In the release mode This assert prin Error message only. #define debug_assert(condition, msg) \ if (!condition) \ - QuasarAppLib:params::log(msg, QuasarAppLib::Error); + QuasarAppUtils::Params::log(msg, QuasarAppUtils::Error); #else // The debug_assert it is assert that abort application only in debug mode.