Use unique_ptr instead of shared_ptr.

This commit is contained in:
Atgeirr Flø Rasmussen
2015-05-29 15:10:51 +02:00
parent 9c78d5ef00
commit a1709aad94
2 changed files with 15 additions and 15 deletions

View File

@@ -121,7 +121,7 @@ namespace Opm
Opm::DeckConstPtr& deck,
const std::vector<double>& threshold_pressures_by_face);
std::shared_ptr<Solver> createSolver(const Wells* wells);
std::unique_ptr<Solver> createSolver(const Wells* wells);
void handleAdditionalWellInflow(SimulatorTimer& timer,
WellsManager& wells_manager,