Commit 55341d35 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Fixing serialization type of dense matrix.

parent 09492f41
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -77,9 +77,9 @@ Dense< Real, Device, Index, RowMajorOrder, RealAllocator >::
getSerializationType()
{
   return String( "Matrices::Dense< " ) +
          getType< RealType >() + ", " +
          getType< Device >() + ", " +
          getType< IndexType >() + " >";
          TNL::getSerializationType< RealType >() + ", [any_device], " +
          TNL::getSerializationType< IndexType >() +
          ( RowMajorOrder ? "true" : "false" ) + ", [any_allocator] >";
}

template< typename Real,
+7 −7
Original line number Diff line number Diff line
@@ -82,9 +82,9 @@ DenseMatrixView< Real, Device, Index, RowMajorOrder >::
getSerializationType()
{
   return String( "Matrices::Dense< " ) +
          getType< RealType >() + ", " +
          getType< Device >() + ", " +
          getType< IndexType >() + " >";
          TNL::getSerializationType< RealType >() + ", [any_device], " +
          TNL::getSerializationType< IndexType >() +
          ( RowMajorOrder ? "true" : "false" ) + ", [any_allocator] >";
}

template< typename Real,
+2 −2

File changed.

Contains only whitespace changes.