Workaround intel compiler bug

Fixes issue #179
This commit is contained in:
Sujin Philip 2017-10-12 13:32:39 -04:00
parent 4253d12062
commit ecb99acb5e

@ -79,7 +79,11 @@ template <typename ShapeStorageTag,
typename ConnectivityStorageTag,
typename OffsetsStorageTag>
CellSetExplicit<ShapeStorageTag, NumIndicesStorageTag, ConnectivityStorageTag, OffsetsStorageTag>::
~CellSetExplicit() = default;
~CellSetExplicit()
// explicitly define instead of '=default' to workaround an intel compiler bug
// (see #179)
{
}
template <typename ShapeStorageTag,
typename NumIndicesStorageTag,