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

Removed __cuda_callable__ from getEntityTagsView()

It calls Array::getView which is not __cuda_callable__. It is used only
from the host anyway.
parent a7cde86b
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -81,14 +81,12 @@ public:
      ghostsOffset = entitiesCount;
   }

   __cuda_callable__
   typename EntityTagsArrayType::ViewType
   getEntityTagsView( DimensionTag )
   {
      return tags.getView();
   }

   __cuda_callable__
   typename EntityTagsArrayType::ConstViewType
   getEntityTagsView( DimensionTag ) const
   {
+0 −2
Original line number Diff line number Diff line
@@ -170,7 +170,6 @@ public:
   using BaseType::operator=;

   template< int Dimension >
   __cuda_callable__
   typename EntityTagsArrayType::ViewType
   getEntityTagsView()
   {
@@ -179,7 +178,6 @@ public:
   }

   template< int Dimension >
   __cuda_callable__
   typename EntityTagsArrayType::ConstViewType
   getEntityTagsView() const
   {