From db3b3ce81f03eafb626455f60ca1d2cf2f4a1176 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Thu, 31 May 2012 15:32:19 -0400 Subject: Fix compatibility with new GCCs. --- src/vZ/Simple.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vZ/Simple.hpp') diff --git a/src/vZ/Simple.hpp b/src/vZ/Simple.hpp index 211acd6..8148ed3 100644 --- a/src/vZ/Simple.hpp +++ b/src/vZ/Simple.hpp @@ -56,7 +56,7 @@ namespace vZ void GenericSimpleIntegrator::step() { - this->y(calculateY(calculateK(m_a), m_b)); + this->y(this->calculateY(this->calculateK(m_a), m_b)); this->x(this->x() + this->h()); } } -- cgit v1.2.3