From 2a7cf31e99add6d8a3214d3e4a7fe47f273468fb Mon Sep 17 00:00:00 2001 From: Pietro Incardona <incardon@mpi-cbg.de> Date: Tue, 7 May 2019 22:23:02 +0200 Subject: [PATCH] Fixing getPos in the example --- example/Vector/7_SPH_dlb/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/Vector/7_SPH_dlb/main.cpp b/example/Vector/7_SPH_dlb/main.cpp index 1b96c6f4a..d79675ebd 100644 --- a/example/Vector/7_SPH_dlb/main.cpp +++ b/example/Vector/7_SPH_dlb/main.cpp @@ -949,7 +949,7 @@ inline void sensor_pressure(Vector & vd, } // Get the position of the neighborhood particle q - Point<3,double> xq = vd.template getPos(q); + Point<3,double> xq = vd.getPos(q); // Calculate the contribution of the particle to the pressure // of the probe -- GitLab