From 47f48f75bf02a92e2d4edd7da67f808355e92a6e Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Wed, 26 Jun 2024 12:17:48 +0200 Subject: Boyscouting --- src/lanes.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/lanes.cpp b/src/lanes.cpp index 39723ca..a5e4236 100644 --- a/src/lanes.cpp +++ b/src/lanes.cpp @@ -828,13 +828,13 @@ LANES_API int luaopen_lanes_core(lua_State* L_) STACK_CHECK_START_REL(L_, 0); // Prevent PUC-Lua/LuaJIT mismatch. Hopefully this works for MoonJIT too -#if LUAJIT_FLAVOR() == 0 - if (luaG_getmodule(L_, LUA_JITLIBNAME) != LuaType::NIL) - raise_luaL_error(L_, "Lanes is built for PUC-Lua, don't run from LuaJIT"); -#else - if (luaG_getmodule(L_, LUA_JITLIBNAME) == LuaType::NIL) - raise_luaL_error(L_, "Lanes is built for LuaJIT, don't run from PUC-Lua"); -#endif + if constexpr (LUAJIT_FLAVOR() == 0) { + if (luaG_getmodule(L_, LUA_JITLIBNAME) != LuaType::NIL) + raise_luaL_error(L_, "Lanes is built for PUC-Lua, don't run from LuaJIT"); + } else { + if (luaG_getmodule(L_, LUA_JITLIBNAME) == LuaType::NIL) + raise_luaL_error(L_, "Lanes is built for LuaJIT, don't run from PUC-Lua"); + } lua_pop(L_, 1); // L_: STACK_CHECK(L_, 0); -- cgit v1.2.3-55-g6feb