diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-05-29 17:31:45 +0200 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-05-29 17:31:45 +0200 |
commit | a156aaeb07fada043b308409dcffcae1726eec0b (patch) | |
tree | f15a5d60cda30607260d896598ea33f8619af53a /src/macros_and_utils.h | |
parent | d47758d58d532a9716ad4fd85cc806704df13735 (diff) | |
download | lanes-a156aaeb07fada043b308409dcffcae1726eec0b.tar.gz lanes-a156aaeb07fada043b308409dcffcae1726eec0b.tar.bz2 lanes-a156aaeb07fada043b308409dcffcae1726eec0b.zip |
Fix clang-tidy issues (most notably Microsoft-specific explicit constructor calls)
Diffstat (limited to 'src/macros_and_utils.h')
-rw-r--r-- | src/macros_and_utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/macros_and_utils.h b/src/macros_and_utils.h index 1427ef1..7bb0d2a 100644 --- a/src/macros_and_utils.h +++ b/src/macros_and_utils.h | |||
@@ -178,7 +178,7 @@ inline void STACK_GROW(lua_State* L_, int n_) | |||
178 | 178 | ||
179 | // ################################################################################################# | 179 | // ################################################################################################# |
180 | 180 | ||
181 | #define LUAG_FUNC(func_name) [[nodiscard]] int LG_##func_name(lua_State* L_) | 181 | #define LUAG_FUNC(func_name) [[nodiscard]] int LG_##func_name(lua_State* const L_) |
182 | 182 | ||
183 | // ################################################################################################# | 183 | // ################################################################################################# |
184 | 184 | ||