Merge pull request #99403 from dsnopek/gdextension-fix-varargs-with-no-args

GDExtension: Fix method binds not saying if they are varargs
This commit is contained in:
Thaddeus Crews 2024-11-19 15:20:09 -06:00
commit 97b3dd4cfe
No known key found for this signature in database
GPG Key ID: 62181B86FE9E5D84

View File

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