aboutsummaryrefslogtreecommitdiff
path: root/src/macros_and_utils.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/macros_and_utils.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/macros_and_utils.h b/src/macros_and_utils.h
index dfde550..5d1467a 100644
--- a/src/macros_and_utils.h
+++ b/src/macros_and_utils.h
@@ -78,13 +78,13 @@ template <typename... ARGS>
78 78
79#ifdef NDEBUG 79#ifdef NDEBUG
80 80
81#define LUA_ASSERT(L, c) ; // nothing 81#define LUA_ASSERT(L_, c) ; // nothing
82 82
83#define STACK_CHECK_START_REL(L, offset_) 83#define STACK_CHECK_START_REL(L_, offset_)
84#define STACK_CHECK_START_ABS(L, offset_) 84#define STACK_CHECK_START_ABS(L_, offset_)
85#define STACK_CHECK_RESET_REL(L, offset_) 85#define STACK_CHECK_RESET_REL(L_, offset_)
86#define STACK_CHECK_RESET_ABS(L, offset_) 86#define STACK_CHECK_RESET_ABS(L_, offset_)
87#define STACK_CHECK(L, offset_) 87#define STACK_CHECK(L_, offset_)
88 88
89#else // NDEBUG 89#else // NDEBUG
90 90