Skip to content

Commit 88355fc

Browse files
committed
fix derp for checked calls
1 parent 908074e commit 88355fc

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

include/sol/call.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ namespace sol {
631631
stack::stack_detail::undefined_metatable umf(L, &meta[0], &stack::stack_detail::set_undefined_methods_on<T>);
632632
umf();
633633

634-
construct_match<T, Args...>(constructor_match<T, false, clean_stack>(obj), L, argcount, boost + 1 + static_cast<int>(syntax));
634+
construct_match<T, Args...>(constructor_match<T, checked, clean_stack>(obj), L, argcount, boost + 1 + static_cast<int>(syntax));
635635

636636
userdataref.push();
637637
return 1;

single/include/sol/forward.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2121

2222
// This file was generated with a script.
23-
// Generated 2019-10-02 06:37:27.657219 UTC
24-
// This header was generated with sol v3.0.3 (revision 3768063)
23+
// Generated 2019-10-02 08:43:39.434050 UTC
24+
// This header was generated with sol v3.0.3 (revision 908074e)
2525
// https://github.com/ThePhD/sol2
2626

2727
#ifndef SOL_SINGLE_INCLUDE_FORWARD_HPP

single/include/sol/sol.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2121

2222
// This file was generated with a script.
23-
// Generated 2019-10-02 06:37:26.989637 UTC
24-
// This header was generated with sol v3.0.3 (revision 3768063)
23+
// Generated 2019-10-02 08:43:38.869924 UTC
24+
// This header was generated with sol v3.0.3 (revision 908074e)
2525
// https://github.com/ThePhD/sol2
2626

2727
#ifndef SOL_SINGLE_INCLUDE_HPP
@@ -16725,7 +16725,7 @@ namespace sol {
1672516725
stack::stack_detail::undefined_metatable umf(L, &meta[0], &stack::stack_detail::set_undefined_methods_on<T>);
1672616726
umf();
1672716727

16728-
construct_match<T, Args...>(constructor_match<T, false, clean_stack>(obj), L, argcount, boost + 1 + static_cast<int>(syntax));
16728+
construct_match<T, Args...>(constructor_match<T, checked, clean_stack>(obj), L, argcount, boost + 1 + static_cast<int>(syntax));
1672916729

1673016730
userdataref.push();
1673116731
return 1;

0 commit comments

Comments
 (0)