Skip to content
Snippets Groups Projects
Commit e48bb4e8 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Added missing operators in MeshBoundaryTagsLayer

parent 242a0e51
No related branches found
No related tags found
No related merge requests found
......@@ -251,6 +251,14 @@ class MeshBoundaryTagsLayer< MeshConfig, Device, DimensionTag, false >
public:
using GlobalIndexType = typename EntityTraitsType::GlobalIndexType;
MeshBoundaryTagsLayer() = default;
explicit MeshBoundaryTagsLayer( const MeshBoundaryTagsLayer& other ) {}
template< typename Device_ >
MeshBoundaryTagsLayer( const MeshBoundaryTagsLayer< MeshConfig, Device_, DimensionTag >& other ) {}
MeshBoundaryTagsLayer& operator=( const MeshBoundaryTagsLayer& other ) { return *this; }
template< typename Device_ >
MeshBoundaryTagsLayer& operator=( const MeshBoundaryTagsLayer< MeshConfig, Device_, DimensionTag >& other ) { return *this; }
bool setNumberOfEntities( const GlobalIndexType& entitiesCount )
{
return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment