replace all boost:: smart pointers by their std:: equivalents

The std variants are part of c++-2011 and it's 2014 now. (they are
also available in GCC 4.4.)
This commit is contained in:
Andreas Lauser
2014-05-02 16:17:54 +02:00
parent b7f3ee7b79
commit ebb1da0662
10 changed files with 23 additions and 24 deletions

View File

@@ -20,7 +20,7 @@
#ifndef OPM_SIMULATORCOMPRESSIBLEAD_HEADER_INCLUDED
#define OPM_SIMULATORCOMPRESSIBLEAD_HEADER_INCLUDED
#include <boost/shared_ptr.hpp>
#include <memory>
#include <vector>
struct UnstructuredGrid;
@@ -87,7 +87,7 @@ namespace Opm
private:
class Impl;
// Using shared_ptr instead of scoped_ptr since scoped_ptr requires complete type for Impl.
boost::shared_ptr<Impl> pimpl_;
std::shared_ptr<Impl> pimpl_;
};
} // namespace Opm