From aea4d0f380fe1225b4214f6aad63574cfc714994 Mon Sep 17 00:00:00 2001
From: Cristian C Lalescu <Cristian.Lalescu@mpcdf.mpg.de>
Date: Wed, 4 May 2022 17:44:01 +0200
Subject: [PATCH] fixes call to template method

---
 cpp/full_code/test_particle_integration.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cpp/full_code/test_particle_integration.cpp b/cpp/full_code/test_particle_integration.cpp
index a1d3cbaf..d914aa92 100644
--- a/cpp/full_code/test_particle_integration.cpp
+++ b/cpp/full_code/test_particle_integration.cpp
@@ -174,7 +174,7 @@ int test_particle_integration<rnumber>::do_work()
             0.40, // default
             3*3./2); // 3/2 to account for divfree call below
                      // 3 because I want a larger amplitude
-    this->kk->force_divfree<rnumber>(this->velocity_back->get_cdata());
+    this->kk->template force_divfree<rnumber>(this->velocity_back->get_cdata());
 
     // take field to real space
     this->velocity_back->ift();
-- 
GitLab