From b69c8b47916e4b3511c1aeff254ebfa6deef37ba Mon Sep 17 00:00:00 2001 From: lawnjelly Date: Wed, 17 May 2023 16:22:26 +0100 Subject: Single Compilation Unit build. Adds support for simple SCU build (DEV_ENABLED only). This speeds up compilation by compiling multiple cpp files within a single translation unit. --- scene/animation/animation_tree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scene/animation/animation_tree.cpp') diff --git a/scene/animation/animation_tree.cpp b/scene/animation/animation_tree.cpp index 3e62dbc1a5..abd66905d1 100644 --- a/scene/animation/animation_tree.cpp +++ b/scene/animation/animation_tree.cpp @@ -941,7 +941,7 @@ void AnimationTree::_clear_playing_caches() { playing_caches.clear(); } -static void _call_object(Object *p_object, const StringName &p_method, const Vector &p_params, bool p_deferred) { +void AnimationTree::_call_object(Object *p_object, const StringName &p_method, const Vector &p_params, bool p_deferred) { // Separate function to use alloca() more efficiently const Variant **argptrs = (const Variant **)alloca(sizeof(const Variant **) * p_params.size()); const Variant *args = p_params.ptr(); -- cgit v1.2.3