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.
This commit is contained in:
Atgeirr Flø Rasmussen 2014-02-03 11:32:46 +01:00 committed by Andreas Lauser
parent ba82e3fa5e
commit 97014713ce

View File

@ -32,7 +32,7 @@ namespace Opm
{
namespace Details {
template <class RHS>
class RK4IVP : public std::binary_function<double,double,double> {
class RK4IVP {
public:
RK4IVP(const RHS& f ,
const std::array<double,2>& span,