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

Fixed orientationNeeded in the mesh initializer

parent 5512491f
No related branches found
No related tags found
1 merge request!49Bug fixes
......@@ -65,7 +65,9 @@ template< typename MeshConfig,
bool EntityStorage =
MeshTraits< MeshConfig >::template EntityTraits< DimensionTag::value >::storageEnabled,
bool EntityReferenceOrientationStorage =
MeshTraits< MeshConfig >::template EntityTraits< DimensionTag::value >::orientationNeeded >
MeshTraits< MeshConfig >::template EntityTraits< DimensionTag::value >::orientationNeeded &&
// orientationNeeded does not make sense without storageEnabled
MeshTraits< MeshConfig >::template EntityTraits< DimensionTag::value >::storageEnabled >
class InitializerLayer;
......
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