Skip to content

Commit 93193a5

Browse files
committed
refactor: Replace hard-coded LUA_TTHREAD+1 with LUA_NUMTAGS macro to improve readability
1 parent 187bda5 commit 93193a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

emmy_debugger/include/emmy_debugger/debugger/emmy_debugger.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,5 +143,5 @@ class Debugger: public std::enable_shared_from_this<Debugger>
143143

144144
Arena<Variable> *arenaRef;
145145

146-
std::bitset<LUA_TTHREAD+1> registeredTypes;
146+
std::bitset<LUA_NUMTAGS> registeredTypes;
147147
};

0 commit comments

Comments
 (0)