aboutsummaryrefslogtreecommitdiff
path: root/src/macros_and_utils.hpp
diff options
context:
space:
mode:
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!");