From 7d94b18dcc41ccdcb5c8e9cff658b7c2a84b283f Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Tue, 15 Oct 2024 18:31:15 +0200 Subject: Fix incorrect int-bool conversions --- src/cancel.cpp | 2 +- src/compat.cpp | 2 +- src/debug.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/cancel.cpp b/src/cancel.cpp index 2cd3c53..b14dca6 100644 --- a/src/cancel.cpp +++ b/src/cancel.cpp @@ -172,7 +172,7 @@ LUAG_FUNC(thread_cancel) if (!lua_isboolean(L_, 2)) { raise_luaL_error(L_, "wake_lindas argument is not a boolean"); } - _wake_lane = lua_toboolean(L_, 2); + _wake_lane = lua_toboolean(L_, 2) ? true : false; lua_remove(L_, 2); // argument is processed, remove it } STACK_CHECK_START_REL(L_, 0); diff --git a/src/compat.cpp b/src/compat.cpp index 8d0bc19..6bdeecc 100644 --- a/src/compat.cpp +++ b/src/compat.cpp @@ -83,7 +83,7 @@ void luaL_requiref(lua_State* L_, const char* modname_, lua_CFunction openf_, in // ################################################################################################# // ################################################################################################# -void* lua_newuserdatauv(lua_State* L_, size_t sz_, [[maybe_unused]] int nuvalue_) +void* lua_newuserdatauv(lua_State* const L_, size_t const sz_, [[maybe_unused]] int const nuvalue_) { LUA_ASSERT(L_, nuvalue_ <= 1); return lua_newuserdata(L_, sz_); diff --git a/src/debug.h b/src/debug.h index b9a82f1..9b7137b 100644 --- a/src/debug.h +++ b/src/debug.h @@ -26,7 +26,7 @@ inline void LUA_ASSERT_IMPL(lua_State* const L_, bool const cond_, std::string_v } } -#define LUA_ASSERT(L_, cond_) LUA_ASSERT_IMPL(L_, cond_, #cond_) +#define LUA_ASSERT(L_, cond_) LUA_ASSERT_IMPL(L_, (cond_) ? true : false, #cond_) #define LUA_ASSERT_CODE(code_) code_ class StackChecker -- cgit v1.2.3-55-g6feb