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:
Markus Blatt
2013-07-04 16:04:35 +02:00
parent 9b0b60c3f8
commit b5db3e0713
8 changed files with 32 additions and 30 deletions

View File

@@ -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_;
};