Skip to content

Commit

Permalink
clang++ is angry and says that the copy/move will be implied here
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisFloofyKitsune committed Jun 19, 2024
1 parent c64885c commit 68ff4b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/ElementAnimation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<Property>(reversing_adjusted_start_value);
new_transition.reversing_shortening_factor = reversing_shortening_factor;
return std::move(new_transition);
return new_transition;
}

} // namespace Rml

0 comments on commit 68ff4b4

Please sign in to comment.