Add missing include for Types in Branch.h

This commit is contained in:
Oliver Ruebel 2021-10-19 21:15:00 -07:00 committed by Gunther H. Weber
parent 61a86973d0
commit 1a16049c78

@ -55,6 +55,7 @@
#include <vtkm/cont/ArrayHandle.h>
#include <vtkm/worklet/contourtree_augmented/ContourTree.h>
#include <vtkm/worklet/contourtree_augmented/Types.h>
#include <vtkm/worklet/contourtree_augmented/processcontourtree/PiecewiseLinearFunction.h>
#include <cmath>
@ -116,9 +117,9 @@ public:
private:
// Private default constructore to ensure that branch decomposition can only be created from a contour tree or loaded from storate (via static methods)
Branch()
: Extremum((vtkm::Id)NO_SUCH_ELEMENT)
: Extremum((vtkm::Id)vtkm::worklet::contourtree_augmented::NO_SUCH_ELEMENT)
, ExtremumVal(0)
, Saddle((vtkm::Id)NO_SUCH_ELEMENT)
, Saddle((vtkm::Id)vtkm::worklet::contourtree_augmented::NO_SUCH_ELEMENT)
, SaddleVal(0)
, Volume(0)
, Parent(nullptr)