From 8dfab5ab67ce1b7d89e6cdad2c5b84c47bd94509 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atgeirr=20Fl=C3=B8=20Rasmussen?= Date: Mon, 3 Feb 2014 11:32:46 +0100 Subject: [PATCH] Removed RK4IVP's inheritance from binary_function. Three reasons: - class is a unary functor, - the typedefs obtained were not used, - binary_function is deprecated in C++11. --- opm/core/simulator/initStateEquil_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opm/core/simulator/initStateEquil_impl.hpp b/opm/core/simulator/initStateEquil_impl.hpp index ffc566be3..381a3f51c 100644 --- a/opm/core/simulator/initStateEquil_impl.hpp +++ b/opm/core/simulator/initStateEquil_impl.hpp @@ -32,7 +32,7 @@ namespace Opm { namespace Details { template - class RK4IVP : public std::binary_function { + class RK4IVP { public: RK4IVP(const RHS& f , const std::array& span,