aboutsummaryrefslogtreecommitdiff
path: root/src/tools.h
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-04-30 11:44:53 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2024-04-30 11:44:53 +0200
commit92ea4d16a274b4a7db0206fd74891a555f6501c9 (patch)
tree358a1b98f6d5c0985c2eaabc3c19b1b7db7327ba /src/tools.h
parentd60a9fb712886880ec9630e744e1258ec3ed19b1 (diff)
downloadlanes-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.h8
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
82void populate_func_lookup_table(lua_State* L_, int _i, char const* _name); 82void populate_func_lookup_table(lua_State* L_, int i_, char const* name_);
83void initialize_allocator_function(Universe* U, lua_State* L_); 83void initialize_allocator_function(Universe* U_, lua_State* L_);
84 84
85// ################################################################################################# 85// #################################################################################################
86 86