GDExtension: Fix method binds not saying if they are varargs

(cherry picked from commit 2599df3b8ae5aa6b718feadefb39cab037927f3e)
This commit is contained in:
David Snopek 2024-11-18 13:19:22 -06:00 committed by Rémi Verschelde
parent bb343ed1c5
commit 2b8acb2015

View File

@ -296,7 +296,7 @@ public:
}
virtual bool is_vararg() const override {
return false;
return vararg;
}
#ifdef TOOLS_ENABLED