diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-04-30 11:44:53 +0200 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-04-30 11:44:53 +0200 |
commit | 92ea4d16a274b4a7db0206fd74891a555f6501c9 (patch) | |
tree | 358a1b98f6d5c0985c2eaabc3c19b1b7db7327ba /src/state.h | |
parent | d60a9fb712886880ec9630e744e1258ec3ed19b1 (diff) | |
download | lanes-92ea4d16a274b4a7db0206fd74891a555f6501c9.tar.gz lanes-92ea4d16a274b4a7db0206fd74891a555f6501c9.tar.bz2 lanes-92ea4d16a274b4a7db0206fd74891a555f6501c9.zip |
Progressively applying the coding rules
Diffstat (limited to 'src/state.h')
-rw-r--r-- | src/state.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/state.h b/src/state.h index 9e43b41..197e052 100644 --- a/src/state.h +++ b/src/state.h | |||
@@ -6,14 +6,14 @@ | |||
6 | enum class LookupMode; | 6 | enum class LookupMode; |
7 | class Universe; | 7 | class Universe; |
8 | 8 | ||
9 | void serialize_require(DEBUGSPEW_PARAM_COMMA(Universe* U) lua_State* L_); | 9 | void serialize_require(DEBUGSPEW_PARAM_COMMA(Universe* U_) lua_State* L_); |
10 | 10 | ||
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, SourceState _from, char const* libs); | 14 | [[nodiscard]] lua_State* luaG_newstate(Universe* U_, SourceState _from, char const* libs); |
15 | 15 | ||
16 | // ################################################################################################# | 16 | // ################################################################################################# |
17 | 17 | ||
18 | void initialize_on_state_create(Universe* U, lua_State* L_); | 18 | void initialize_on_state_create(Universe* U_, lua_State* L_); |
19 | void call_on_state_create(Universe* U, lua_State* L_, lua_State* from_, LookupMode mode_); | 19 | void call_on_state_create(Universe* U_, lua_State* L_, lua_State* from_, LookupMode mode_); |