Commit 20fbd41f authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed use of MeshEntityTraits in BoundaryTagsLayer

parent 4f9ef11f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ namespace Meshes {
// It is inherited by MeshStorageLayer.
template< typename MeshConfig,
          typename DimensionTag,
          bool TagStorage = MeshConfig::boundaryTagsStorage( typename MeshEntityTraits< MeshConfig, DimensionTag::value >::EntityTopology() ) >
          bool TagStorage = MeshConfig::boundaryTagsStorage( typename MeshTraits< MeshConfig >::template EntityTraits< DimensionTag::value >::EntityTopology() ) >
class MeshBoundaryTagsLayer
{
   using MeshTraitsType    = MeshTraits< MeshConfig >;