diff options
Diffstat (limited to '')
-rw-r--r-- | src/tools.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools.hpp b/src/tools.hpp index 9a62cda..2b8c5b5 100644 --- a/src/tools.hpp +++ b/src/tools.hpp | |||
@@ -4,7 +4,7 @@ | |||
4 | 4 | ||
5 | class Universe; | 5 | class Universe; |
6 | 6 | ||
7 | enum class LookupMode | 7 | enum class [[nodiscard]] LookupMode |
8 | { | 8 | { |
9 | LaneBody, // send the lane body directly from the source to the destination lane. keep this one first so that it's the value we get when we default-construct | 9 | LaneBody, // send the lane body directly from the source to the destination lane. keep this one first so that it's the value we get when we default-construct |
10 | ToKeeper, // send a function from a lane to a keeper state | 10 | ToKeeper, // send a function from a lane to a keeper state |
@@ -20,6 +20,7 @@ enum class [[nodiscard]] FuncSubType | |||
20 | FastJIT | 20 | FastJIT |
21 | }; | 21 | }; |
22 | 22 | ||
23 | [[nodiscard]] | ||
23 | FuncSubType luaG_getfuncsubtype(lua_State* L_, StackIndex i_); | 24 | FuncSubType luaG_getfuncsubtype(lua_State* L_, StackIndex i_); |
24 | 25 | ||
25 | // ################################################################################################# | 26 | // ################################################################################################# |