diff options
Diffstat (limited to '')
-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 | // ################################################################################################# |