Loading src/TNL/Containers/Array.hpp +0 −1 Original line number Diff line number Diff line Loading @@ -674,7 +674,6 @@ setValue( ValueType v, IndexType begin, IndexType end ) { TNL_ASSERT_TRUE( this->getData(), "Attempted to set a value of an empty array." ); if( end == 0 ) end = this->getSize(); Algorithms::MemoryOperations< Device >::set( &this->getData()[ begin ], v, end - begin ); Loading src/TNL/Containers/ArrayView.hpp +0 −1 Original line number Diff line number Diff line Loading @@ -309,7 +309,6 @@ void ArrayView< Value, Device, Index >:: setValue( ValueType value, IndexType begin, IndexType end ) { TNL_ASSERT_GT( size, 0, "Attempted to set value to an empty array view." ); if( end == 0 ) end = this->getSize(); Algorithms::MemoryOperations< Device >::set( &getData()[ begin ], value, end - begin ); Loading Loading
src/TNL/Containers/Array.hpp +0 −1 Original line number Diff line number Diff line Loading @@ -674,7 +674,6 @@ setValue( ValueType v, IndexType begin, IndexType end ) { TNL_ASSERT_TRUE( this->getData(), "Attempted to set a value of an empty array." ); if( end == 0 ) end = this->getSize(); Algorithms::MemoryOperations< Device >::set( &this->getData()[ begin ], v, end - begin ); Loading
src/TNL/Containers/ArrayView.hpp +0 −1 Original line number Diff line number Diff line Loading @@ -309,7 +309,6 @@ void ArrayView< Value, Device, Index >:: setValue( ValueType value, IndexType begin, IndexType end ) { TNL_ASSERT_GT( size, 0, "Attempted to set value to an empty array view." ); if( end == 0 ) end = this->getSize(); Algorithms::MemoryOperations< Device >::set( &getData()[ begin ], value, end - begin ); Loading