mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-29 12:33:49 -06:00
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:
parent
ba82e3fa5e
commit
97014713ce
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user