Skip to content
Snippets Groups Projects
Commit fd7f34c9 authored by Patricia Kroll Fasel - 090207's avatar Patricia Kroll Fasel - 090207
Browse files

Fix warnings

parent 0950af7a
No related branches found
No related tags found
No related merge requests found
......@@ -107,6 +107,9 @@ public:
vtkm::cont::ArrayHandle<vtkm::Pair<vtkm::Id, vtkm::Id> > &saddlePeak,
const DeviceAdapter& device)
{
// DeviceAdapter is passed only to be available in template but is not used
(void) device;
vtkm::Id nSlices = 1;
// Build the mesh and fill in the values
......@@ -163,6 +166,9 @@ public:
vtkm::cont::ArrayHandle<vtkm::Pair<vtkm::Id, vtkm::Id> > &saddlePeak,
const DeviceAdapter& device)
{
// DeviceAdapter is passed only to be available in template but is not used
(void) device;
// Build the mesh and fill in the values
contourtree::Mesh3D_DEM_Triangulation<FieldType,StorageType,DeviceAdapter>
mesh(fieldArray, nRows, nCols, nSlices);
......
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