Fix compile warning.

This commit is contained in:
Dave Pugmire 2020-11-19 09:28:29 -05:00
parent 02e37db863
commit 3dc1237881

@ -69,16 +69,6 @@ inline VTKM_CONT vtkm::cont::PartitionedDataSet ParticleAdvection::PrepareForExe
else
return vtkm::filter::particleadvection::RunAlgo<AlgorithmType>(
boundsMap, dsi, this->NumberOfSteps, this->StepSize, this->Seeds);
// vtkm::filter::particleadvection::ParticleAdvectionAlgorithm pa(boundsMap, dsi);
vtkm::filter::particleadvection::ParticleAdvectionThreadedAlgorithm pa(boundsMap, dsi);
pa.SetNumberOfSteps(this->NumberOfSteps);
pa.SetStepSize(this->StepSize);
pa.SetSeeds(this->Seeds);
pa.Go();
vtkm::cont::PartitionedDataSet output = pa.GetOutput();
return output;
}
//-----------------------------------------------------------------------------