aboutsummaryrefslogtreecommitdiff
path: root/src/deep.h
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-05-20 17:11:20 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2024-05-20 17:11:20 +0200
commiteb090da027012292e8856dc01856cde8880d3467 (patch)
tree7cd0480536ad52e76d9922a05f926ed4d7eb133f /src/deep.h
parentac8caa415b36c875578c2ad0490965b80be2f37e (diff)
downloadlanes-eb090da027012292e8856dc01856cde8880d3467.tar.gz
lanes-eb090da027012292e8856dc01856cde8880d3467.tar.bz2
lanes-eb090da027012292e8856dc01856cde8880d3467.zip
Lane::debugName is a std::string_view
Diffstat (limited to 'src/deep.h')
-rw-r--r--src/deep.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deep.h b/src/deep.h
index 96461d6..dc32251 100644
--- a/src/deep.h
+++ b/src/deep.h
@@ -75,7 +75,7 @@ class DeepFactory
75 [[nodiscard]] int pushDeepUserdata(DestState L_, int nuv_) const; 75 [[nodiscard]] int pushDeepUserdata(DestState L_, int nuv_) const;
76 [[nodiscard]] DeepPrelude* toDeep(lua_State* L_, int index_) const; 76 [[nodiscard]] DeepPrelude* toDeep(lua_State* L_, int index_) const;
77 static void DeleteDeepObject(lua_State* L_, DeepPrelude* o_); 77 static void DeleteDeepObject(lua_State* L_, DeepPrelude* o_);
78 [[nodiscard]] static char const* PushDeepProxy(DestState L_, DeepPrelude* o_, int nuv_, LookupMode mode_); 78 [[nodiscard]] static std::string_view PushDeepProxy(DestState L_, DeepPrelude* o_, int nuv_, LookupMode mode_);
79}; 79};
80 80
81// ################################################################################################# 81// #################################################################################################