Loading src/TNL/Containers/StaticArray.hpp +1 −5 Original line number Diff line number Diff line Loading @@ -295,11 +295,7 @@ StaticArray< Size, Value >:: operator StaticArray< Size, OtherValue >() const { StaticArray< Size, OtherValue > aux; Algorithms::unrolledFor< int, 0, Size >( [&] ( int i ) mutable { aux[ i ] = (*this)[ i ]; } ); aux.operator=( *this ); return aux; } Loading src/TNL/Containers/StaticVector.hpp +1 −5 Original line number Diff line number Diff line Loading @@ -99,11 +99,7 @@ StaticVector< Size, Real >:: operator StaticVector< Size, OtherReal >() const { StaticVector< Size, OtherReal > aux; Algorithms::unrolledFor< int, 0, Size >( [&] ( int i ) mutable { aux[ i ] = (*this)[ i ]; } ); aux.operator=( *this ); return aux; } Loading Loading
src/TNL/Containers/StaticArray.hpp +1 −5 Original line number Diff line number Diff line Loading @@ -295,11 +295,7 @@ StaticArray< Size, Value >:: operator StaticArray< Size, OtherValue >() const { StaticArray< Size, OtherValue > aux; Algorithms::unrolledFor< int, 0, Size >( [&] ( int i ) mutable { aux[ i ] = (*this)[ i ]; } ); aux.operator=( *this ); return aux; } Loading
src/TNL/Containers/StaticVector.hpp +1 −5 Original line number Diff line number Diff line Loading @@ -99,11 +99,7 @@ StaticVector< Size, Real >:: operator StaticVector< Size, OtherReal >() const { StaticVector< Size, OtherReal > aux; Algorithms::unrolledFor< int, 0, Size >( [&] ( int i ) mutable { aux[ i ] = (*this)[ i ]; } ); aux.operator=( *this ); return aux; } Loading