Using tr1::shared_ptr instead of boost.

This commit is contained in:
Atgeirr Flø Rasmussen 2011-12-09 12:50:32 +01:00
parent 60deae5095
commit 8ba7ae9ab9

View File

@ -27,6 +27,7 @@
#include <string>
#include <vector>
#include <stdexcept>
#include <tr1/memory>
namespace Dune
{
@ -252,7 +253,7 @@ namespace Dune
}
EclipseGridParser sp;
boost::shared_ptr<SPECGRID> sg(new SPECGRID);
std::tr1::shared_ptr<SPECGRID> sg(new SPECGRID);
for (int dd = 0; dd < 3; ++dd) {
sg->dimensions[dd] = new_dims_[dd];
}