aboutsummaryrefslogtreecommitdiff
path: root/src/macros_and_utils.hpp
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-12-17 11:53:15 +0100
committerBenoit Germain <benoit.germain@ubisoft.com>2024-12-17 11:53:15 +0100
commit48c99e29ae38db79522fb2833f3144ae58c7a906 (patch)
tree4fbf42918fa22fad025e75733dbe3caf76325f9b /src/macros_and_utils.hpp
parentefd5318b2d9132996bf35a6af2e82706665890ff (diff)
downloadlanes-48c99e29ae38db79522fb2833f3144ae58c7a906.tar.gz
lanes-48c99e29ae38db79522fb2833f3144ae58c7a906.tar.bz2
lanes-48c99e29ae38db79522fb2833f3144ae58c7a906.zip
Some constitude tweaks
Diffstat (limited to 'src/macros_and_utils.hpp')
-rw-r--r--src/macros_and_utils.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/macros_and_utils.hpp b/src/macros_and_utils.hpp
index 0897367..26d47a9 100644
--- a/src/macros_and_utils.hpp
+++ b/src/macros_and_utils.hpp
@@ -8,7 +8,7 @@ using namespace std::chrono_literals;
8 8
9// ################################################################################################# 9// #################################################################################################
10 10
11inline void STACK_GROW(lua_State* L_, int n_) 11inline void STACK_GROW(lua_State* const L_, int const n_)
12{ 12{
13 if (!lua_checkstack(L_, n_)) { 13 if (!lua_checkstack(L_, n_)) {
14 raise_luaL_error(L_, "Cannot grow stack!"); 14 raise_luaL_error(L_, "Cannot grow stack!");