Skip to content

Commit

Permalink
sonar fix
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgessinger committed Oct 24, 2024
1 parent 74b1f91 commit 16602ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/include/Acts/Navigation/MultiNavigationPolicy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class MultiNavigationPolicy final : public MultiNavigationPolicyBase {
/// Constructor from a set of child policies.
/// @param policies The child policies
MultiNavigationPolicy(Policies&&... policies)
: m_policies{std::forward<Policies>(policies)...} {}
: m_policies{std::move(policies)...} {}

/// Implementation of the connection to a navigation delegate.
/// It uses the delegate chain factory to produce a delegate chain and stores
Expand Down

0 comments on commit 16602ad

Please sign in to comment.