mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Changed std::tr1 occurences to boost.
std::tr1 might not be supported by all compilers and will eventually be dropped by others. Using boost instead makes this more portable.
This commit is contained in:
@@ -22,7 +22,7 @@
|
||||
|
||||
|
||||
#include <opm/core/linalg/LinearSolverInterface.hpp>
|
||||
#include <tr1/memory>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
|
||||
namespace Opm
|
||||
{
|
||||
@@ -87,7 +87,7 @@ namespace Opm
|
||||
virtual double getTolerance() const;
|
||||
|
||||
private:
|
||||
std::tr1::shared_ptr<LinearSolverInterface> solver_;
|
||||
boost::shared_ptr<LinearSolverInterface> solver_;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user