diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-06-12 11:26:38 +0200 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-06-12 11:26:38 +0200 |
commit | fffa17d7e28f4a3147adf1f2ae2a73c4b0f7b945 (patch) | |
tree | 01f9bbebd6aab5f9be47597e4f62dd0f10853d3a /src/deep.cpp | |
parent | f1c3401e80a3228ee3ef5110e73712e1aa879fca (diff) | |
download | lanes-fffa17d7e28f4a3147adf1f2ae2a73c4b0f7b945.tar.gz lanes-fffa17d7e28f4a3147adf1f2ae2a73c4b0f7b945.tar.bz2 lanes-fffa17d7e28f4a3147adf1f2ae2a73c4b0f7b945.zip |
Add support for to-be-closed linda
Diffstat (limited to 'src/deep.cpp')
-rw-r--r-- | src/deep.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/deep.cpp b/src/deep.cpp index b6a9a22..249c497 100644 --- a/src/deep.cpp +++ b/src/deep.cpp | |||
@@ -295,7 +295,7 @@ void DeepFactory::PushDeepProxy(DestState const L_, DeepPrelude* const prelude_, | |||
295 | * | 295 | * |
296 | * Returns: 'proxy' userdata for accessing the deep data via 'DeepFactory::toDeep()' | 296 | * Returns: 'proxy' userdata for accessing the deep data via 'DeepFactory::toDeep()' |
297 | */ | 297 | */ |
298 | int DeepFactory::pushDeepUserdata(DestState const L_, int const nuv_) const | 298 | void DeepFactory::pushDeepUserdata(DestState const L_, int const nuv_) const |
299 | { | 299 | { |
300 | STACK_GROW(L_, 1); | 300 | STACK_GROW(L_, 1); |
301 | STACK_CHECK_START_REL(L_, 0); | 301 | STACK_CHECK_START_REL(L_, 0); |
@@ -322,7 +322,6 @@ int DeepFactory::pushDeepUserdata(DestState const L_, int const nuv_) const | |||
322 | 322 | ||
323 | DeepFactory::PushDeepProxy(L_, _prelude, nuv_, LookupMode::LaneBody, L_); // proxy | 323 | DeepFactory::PushDeepProxy(L_, _prelude, nuv_, LookupMode::LaneBody, L_); // proxy |
324 | STACK_CHECK(L_, 1); | 324 | STACK_CHECK(L_, 1); |
325 | return 1; | ||
326 | } | 325 | } |
327 | 326 | ||
328 | // ################################################################################################# | 327 | // ################################################################################################# |