summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp
diff options
context:
space:
mode:
authorDavid Snopek <dsnopek@gmail.com>2023-09-02 08:04:29 -0500
committerGitHub <noreply@github.com>2023-09-02 08:04:29 -0500
commit8990d5a40ee93eb84d7eda590793b0901f1f7584 (patch)
tree742a88d0c11e6c93569021e61d82226906afe222 /include/godot_cpp
parent9ada7065d64bff3d1b87f4e0de1a52d88959731e (diff)
parent3536803e9e92ff1877e4e2e0ae113b17fe415e5f (diff)
downloadredot-cpp-8990d5a40ee93eb84d7eda590793b0901f1f7584.tar.gz
Merge pull request #1091 from Daylily-Zeleen/daylily-zeleen/implement_builtin_classes_vararg_methods
Implement vararg methods of builtin classes.
Diffstat (limited to 'include/godot_cpp')
-rw-r--r--include/godot_cpp/variant/variant.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/godot_cpp/variant/variant.hpp b/include/godot_cpp/variant/variant.hpp
index 06ba75f..3b5ca56 100644
--- a/include/godot_cpp/variant/variant.hpp
+++ b/include/godot_cpp/variant/variant.hpp
@@ -334,6 +334,8 @@ String vformat(const String &p_text, const VarArgs... p_args) {
return p_text % args_array;
}
+#include <godot_cpp/variant/builtin_vararg_methods.hpp>
+
} // namespace godot
#endif // GODOT_VARIANT_HPP