aboutsummaryrefslogtreecommitdiff
path: root/src/state.h
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-04-24 15:53:04 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2024-04-24 15:53:04 +0200
commit45fab6f5b12f00631005b0086931a2f25385146e (patch)
tree2ff35ec89c2622d6624a691874879d1fdca09006 /src/state.h
parent3bfb6dec957e5e034c12157787fab9faf75c85a1 (diff)
downloadlanes-45fab6f5b12f00631005b0086931a2f25385146e.tar.gz
lanes-45fab6f5b12f00631005b0086931a2f25385146e.tar.bz2
lanes-45fab6f5b12f00631005b0086931a2f25385146e.zip
C++ migration: using KeeperState = Unique<lua_State*>
Diffstat (limited to 'src/state.h')
-rw-r--r--src/state.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state.h b/src/state.h
index 059e163..2d65f16 100644
--- a/src/state.h
+++ b/src/state.h
@@ -11,7 +11,7 @@ void serialize_require(DEBUGSPEW_PARAM_COMMA(Universe* U) lua_State* L);
11// ################################################################################################# 11// #################################################################################################
12 12
13[[nodiscard]] lua_State* create_state(Universe* U, lua_State* from_); 13[[nodiscard]] lua_State* create_state(Universe* U, lua_State* from_);
14[[nodiscard]] lua_State* luaG_newstate(Universe* U, Source _from, char const* libs); 14[[nodiscard]] lua_State* luaG_newstate(Universe* U, SourceState _from, char const* libs);
15 15
16// ################################################################################################# 16// #################################################################################################
17 17