Commit 7792036a authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed return type of Grid.getSpaceSteps

parent c3c58667
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@ class Grid< 1, Real, Device, Index > : public Object
   inline const RealType& getCellMeasure() const;
 
   __cuda_callable__
   inline VertexType getSpaceSteps() const;
   inline const VertexType& getSpaceSteps() const;

   template< int xPow >
   __cuda_callable__
+1 −1
Original line number Diff line number Diff line
@@ -225,7 +225,7 @@ template< typename Real,
          typename Device,
          typename Index >
__cuda_callable__ inline
typename Grid< 1, Real, Device, Index >::VertexType
const typename Grid< 1, Real, Device, Index >::VertexType&
Grid< 1, Real, Device, Index >::
getSpaceSteps() const
{
+1 −1
Original line number Diff line number Diff line
@@ -99,7 +99,7 @@ class Grid< 2, Real, Device, Index > : public Object
   inline const RealType& getCellMeasure() const;
 
   __cuda_callable__
   inline VertexType getSpaceSteps() const;
   inline const VertexType& getSpaceSteps() const;

   template< int xPow, int yPow >
   __cuda_callable__
+1 −1
Original line number Diff line number Diff line
@@ -278,7 +278,7 @@ template< typename Real,
          typename Device,
          typename Index >
__cuda_callable__ inline
typename Grid< 2, Real, Device, Index >::VertexType
const typename Grid< 2, Real, Device, Index >::VertexType&
Grid< 2, Real, Device, Index >::
getSpaceSteps() const
{
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ class Grid< 3, Real, Device, Index > : public Object
   inline const RealType& getCellMeasure() const;

   __cuda_callable__
   inline VertexType getSpaceSteps() const;
   inline const VertexType& getSpaceSteps() const;
 
   template< int xPow, int yPow, int zPow >
   __cuda_callable__
Loading