Commit 72da42c2 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed return type of getMeasure() method

parent 1386431a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ class Grid< 1, Real, Device, Index > : public Object
   RealType getEntityMeasure( const EntityType& entity ) const;
 
   __cuda_callable__
   RealType getCellMeasure() const;
   inline const RealType& getCellMeasure() const;
 
   __cuda_callable__
   inline VertexType getSpaceSteps() const;
+1 −1
Original line number Diff line number Diff line
@@ -214,7 +214,7 @@ template< typename Real,
          typename Device,
          typename Index >
__cuda_callable__
Real
const Real&
Grid< 1, Real, Device, Index >::
getCellMeasure() const
{
+1 −1
Original line number Diff line number Diff line
@@ -96,7 +96,7 @@ class Grid< 2, Real, Device, Index > : public Object
   RealType getEntityMeasure( const EntityType& entity ) const;
 
   __cuda_callable__
   RealType getCellMeasure() const;
   inline const RealType& getCellMeasure() const;
 
   __cuda_callable__
   inline VertexType getSpaceSteps() const;
+1 −1
Original line number Diff line number Diff line
@@ -266,7 +266,7 @@ template< typename Real,
          typename Device,
          typename Index >
__cuda_callable__
Real
const Real&
Grid< 2, Real, Device, Index >::
getCellMeasure() const
{
+1 −1
Original line number Diff line number Diff line
@@ -89,7 +89,7 @@ class Grid< 3, Real, Device, Index > : public Object
   RealType getEntityMeasure( const EntityType& entity ) const;
 
   __cuda_callable__
   RealType getCellMeasure() const;
   inline const RealType& getCellMeasure() const;

   __cuda_callable__
   inline VertexType getSpaceSteps() const;
Loading