From 68ff4b4b3f17605714c88192fb0f2cfae626d593 Mon Sep 17 00:00:00 2001 From: ChrisFloofyKitsune Date: Wed, 19 Jun 2024 01:24:21 -0600 Subject: [PATCH] clang++ is angry and says that the copy/move will be implied here --- Source/Core/ElementAnimation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/ElementAnimation.cpp b/Source/Core/ElementAnimation.cpp index 1961a9cca..b8b1702e0 100644 --- a/Source/Core/ElementAnimation.cpp +++ b/Source/Core/ElementAnimation.cpp @@ -763,7 +763,7 @@ ElementAnimation ElementAnimation::CreateTransition(PropertyId property_id, Elem new_transition.InternalAddKey(duration, end_value, element, tween); new_transition.reversing_adjusted_start_value = Rml::MakeUnique(reversing_adjusted_start_value); new_transition.reversing_shortening_factor = reversing_shortening_factor; - return std::move(new_transition); + return new_transition; } } // namespace Rml