Skip to content
Snippets Groups Projects
Commit e5aacd73 authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

Fix -Wpessimizing-move warning in integersequence test

parent aa4fdb67
Branches
Tags
1 merge request!674Fix -Wpessimizing-move warning in integersequence test
Pipeline #18711 passed
......@@ -13,7 +13,7 @@ std::tuple< typename std::tuple_element< Ints, std::array< T, sizeof...( Ints )
array_to_tuple_impl ( const std::array< T, sizeof...( Ints ) > &array, Dune::Std::index_sequence< Ints... > )
{
auto tuple = std::make_tuple( array[ Ints ]... );
return std::move( tuple );
return tuple;
}
template< class T, std::size_t N >
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment