aboutsummaryrefslogtreecommitdiff
path: root/src/deep.h
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-10-24 10:33:02 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2024-10-24 10:33:02 +0200
commit8745a54f88f31cd51dc86c96039ebe0b3e98f5ea (patch)
treef27eba088bfbda6aed4f9d70e514ec87a5d553fc /src/deep.h
parent54acd7514dc0a2e9d593dd6312eae90ae6c0d6b5 (diff)
downloadlanes-8745a54f88f31cd51dc86c96039ebe0b3e98f5ea.tar.gz
lanes-8745a54f88f31cd51dc86c96039ebe0b3e98f5ea.tar.bz2
lanes-8745a54f88f31cd51dc86c96039ebe0b3e98f5ea.zip
Added strong types UserValueCount and UnusedInt
Diffstat (limited to 'src/deep.h')
-rw-r--r--src/deep.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/deep.h b/src/deep.h
index 8896698..0ea2712 100644
--- a/src/deep.h
+++ b/src/deep.h
@@ -68,8 +68,8 @@ class DeepFactory
68 static void DeleteDeepObject(lua_State* L_, DeepPrelude* o_); 68 static void DeleteDeepObject(lua_State* L_, DeepPrelude* o_);
69 [[nodiscard]] static bool IsDeepUserdata(lua_State* const L_, StackIndex const idx_); 69 [[nodiscard]] static bool IsDeepUserdata(lua_State* const L_, StackIndex const idx_);
70 [[nodiscard]] static DeepFactory* LookupFactory(lua_State* L_, StackIndex index_, LookupMode mode_); 70 [[nodiscard]] static DeepFactory* LookupFactory(lua_State* L_, StackIndex index_, LookupMode mode_);
71 static void PushDeepProxy(DestState L_, DeepPrelude* o_, int nuv_, LookupMode mode_, lua_State* errL_); 71 static void PushDeepProxy(DestState L_, DeepPrelude* o_, UserValueCount nuv_, LookupMode mode_, lua_State* errL_);
72 void pushDeepUserdata(DestState L_, int nuv_) const; 72 void pushDeepUserdata(DestState L_, UserValueCount nuv_) const;
73 [[nodiscard]] DeepPrelude* toDeep(lua_State* L_, StackIndex index_) const; 73 [[nodiscard]] DeepPrelude* toDeep(lua_State* L_, StackIndex index_) const;
74}; 74};
75 75