diff options
Diffstat (limited to '')
-rw-r--r-- | src/debug.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debug.h b/src/debug.h index 0f5c6bc..b9a82f1 100644 --- a/src/debug.h +++ b/src/debug.h | |||
@@ -36,8 +36,8 @@ class StackChecker | |||
36 | int oldtop; | 36 | int oldtop; |
37 | 37 | ||
38 | public: | 38 | public: |
39 | using Relative = Unique<int>; | 39 | DECLARE_UNIQUE_TYPE(Relative, int); |
40 | using Absolute = Unique<int>; | 40 | DECLARE_UNIQUE_TYPE(Absolute, int); |
41 | 41 | ||
42 | StackChecker(lua_State* const L_, Relative const offset_, SourceLocation const& where_ = Where()) | 42 | StackChecker(lua_State* const L_, Relative const offset_, SourceLocation const& where_ = Where()) |
43 | : L{ L_ } | 43 | : L{ L_ } |