Commit f37cb576 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Added FIXME notes to VectorField.h

parent 24fccf17
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -182,6 +182,7 @@ class VectorField< Size, MeshFunction< Mesh, MeshEntityDimension, Real > >
      {
         VectorType v;
         for( int i = 0; i < Size; i++ )
            // FIXME: the dereferencing operator of FunctionPointer is not __cuda_callable__
            v[ i ] = ( *this->vectorField[ i ] )[ index ];
         return v;
      }
@@ -192,6 +193,7 @@ class VectorField< Size, MeshFunction< Mesh, MeshEntityDimension, Real > >
      {
         VectorType v;
         for( int i = 0; i < Size; i++ )
            // FIXME: the dereferencing operator of FunctionPointer is not __cuda_callable__
            v[ i ] = ( *this->vectorField[ i ] )( meshEntity );
         return v;
      }