diff --git a/opm/core/wells/WellsManager.hpp b/opm/core/wells/WellsManager.hpp index c39610e0c..2d024a43b 100644 --- a/opm/core/wells/WellsManager.hpp +++ b/opm/core/wells/WellsManager.hpp @@ -72,14 +72,13 @@ namespace Opm /// The permeability argument may be zero if the input contain /// well productivity indices, otherwise it must be given in /// order to approximate these by the Peaceman formula. - template + template WellsManager(const Opm::EclipseStateConstPtr eclipseState, const size_t timeStep, int num_cells, const int* global_cell, const int* cart_dims, int dimensions, - CC begin_cell_centroids, const F2C& f2c, FC begin_face_centroids, const double* permeability); diff --git a/opm/core/wells/WellsManager_impl.hpp b/opm/core/wells/WellsManager_impl.hpp index 1234b8277..7840efc71 100644 --- a/opm/core/wells/WellsManager_impl.hpp +++ b/opm/core/wells/WellsManager_impl.hpp @@ -250,7 +250,7 @@ void WellsManager::createWellsFromSpecs(std::vector& wells, size_t } } -template +template WellsManager:: WellsManager(const Opm::EclipseStateConstPtr eclipseState, const size_t timeStep, @@ -258,14 +258,13 @@ WellsManager(const Opm::EclipseStateConstPtr eclipseState, const int* global_cell, const int* cart_dims, int dimensions, - CC begin_cell_centroids, const C2F& cell_to_faces, FC begin_face_centroids, const double* permeability) : w_(0) { init(eclipseState, timeStep, number_of_cells, global_cell, - cart_dims, dimensions, begin_cell_centroids, + cart_dims, dimensions, cell_to_faces, begin_face_centroids, permeability); }