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

Fixed nvcc warning in EntityTags layers of the Mesh

parent 0a7242bb
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -184,13 +184,11 @@ public:
      }
   }

   __cuda_callable__
   auto getBoundaryIndices( DimensionTag ) const
   {
      return boundaryIndices.getConstView();
   }

   __cuda_callable__
   auto getInteriorIndices( DimensionTag ) const
   {
      return interiorIndices.getConstView();
+0 −2
Original line number Diff line number Diff line
@@ -226,7 +226,6 @@ public:
   }

   template< int Dimension >
   __cuda_callable__
   auto getBoundaryIndices() const
   {
      static_assert( WeakTrait< Dimension >::entityTagsEnabled, "You try to access entity tags which are not configured for storage." );
@@ -234,7 +233,6 @@ public:
   }

   template< int Dimension >
   __cuda_callable__
   auto getInteriorIndices() const
   {
      static_assert( WeakTrait< Dimension >::entityTagsEnabled, "You try to access entity tags which are not configured for storage." );