Merge topic 'fix-intel-link-bug'

ecb99acb Workaround intel compiler bug

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Matt Larsen <mlarsen@cs.uoregon.edu>
Merge-request: !969
This commit is contained in:
Sujin Philip 2017-10-12 20:46:23 +00:00 committed by Kitware Robot
commit 800bcf3124

@ -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,