Commit 1997234c authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Fixed array assignment.

parent 7d7373a9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -549,6 +549,7 @@ Array< Value, Device, Index >&
Array< Value, Device, Index >::
operator=( const T& data )
{
   Algorithms::ArrayAssignment< Array, T >::resize( *this, data );
   Algorithms::ArrayAssignment< Array, T >::assign( *this, data );
   return *this;
}