From f0ca73892a26566e85e1fa819f151fa1db4a42ad Mon Sep 17 00:00:00 2001 From: George Marques Date: Sat, 2 Apr 2022 14:32:01 -0300 Subject: [PATCH] Fix argument type generation with typed method binds It needs to generate the types, not only set the argument count. --- core/make_binders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/make_binders.py b/core/make_binders.py index 5301187657c..ecc5fdd709d 100644 --- a/core/make_binders.py +++ b/core/make_binders.py @@ -70,7 +70,7 @@ public: #ifdef DEBUG_METHODS_ENABLED _set_const($ifconst true$$ifnoconst false$); #endif - set_argument_count($argc$); + _generate_argument_types($argc$); $ifret _set_returns(true); $ };