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/tools.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/tools.h')
-rw-r--r-- | src/tools.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools.h b/src/tools.h index b58ae00..b22e4dd 100644 --- a/src/tools.h +++ b/src/tools.h | |||
@@ -55,8 +55,8 @@ class InterCopyContext | |||
55 | [[nodiscard]] bool push_cached_metatable() const; | 55 | [[nodiscard]] bool push_cached_metatable() const; |
56 | 56 | ||
57 | // for use in inter_copy_userdata | 57 | // for use in inter_copy_userdata |
58 | [[nodiscard]] bool copyclone() const; | 58 | [[nodiscard]] bool copyClonable() const; |
59 | [[nodiscard]] bool copydeep() const; | 59 | [[nodiscard]] bool copyDeep() const; |
60 | 60 | ||
61 | // copying a single Lua stack item | 61 | // copying a single Lua stack item |
62 | [[nodiscard]] bool inter_copy_boolean() const; | 62 | [[nodiscard]] bool inter_copy_boolean() const; |
@@ -79,8 +79,8 @@ class InterCopyContext | |||
79 | 79 | ||
80 | [[nodiscard]] int luaG_nameof(lua_State* L_); | 80 | [[nodiscard]] int luaG_nameof(lua_State* L_); |
81 | 81 | ||
82 | void populate_func_lookup_table(lua_State* L_, int _i, char const* _name); | 82 | void populate_func_lookup_table(lua_State* L_, int i_, char const* name_); |
83 | void initialize_allocator_function(Universe* U, lua_State* L_); | 83 | void initialize_allocator_function(Universe* U_, lua_State* L_); |
84 | 84 | ||
85 | // ################################################################################################# | 85 | // ################################################################################################# |
86 | 86 | ||