From d30c795c08bef7a10c8736271c1533836cc44839 Mon Sep 17 00:00:00 2001 From: Abhishek Yenpure Date: Fri, 15 Sep 2017 13:07:39 -0400 Subject: [PATCH] Fix particle advection error --- examples/particle_advection/ParticleAdvection.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/particle_advection/ParticleAdvection.cxx b/examples/particle_advection/ParticleAdvection.cxx index 90bb1a5f5..237cae34a 100644 --- a/examples/particle_advection/ParticleAdvection.cxx +++ b/examples/particle_advection/ParticleAdvection.cxx @@ -168,7 +168,7 @@ void RunTest(const std::string& fname, else { vtkm::worklet::Streamline streamline; - streamline.Run(rk4, seedArray, fieldArray, numSteps, DeviceAdapter()); + streamline.Run(rk4, seedArray, numSteps, DeviceAdapter()); } auto t1 = std::chrono::high_resolution_clock::now() - t0;