Corrected mistake from moving function calls.

This commit is contained in:
Halvor Møll Nilsen 2012-08-24 13:39:42 +02:00
parent fd0d060ed8
commit b7e9fbe9a5
2 changed files with 2 additions and 2 deletions

View File

@ -645,7 +645,7 @@ namespace Opm
toBothSat(saturation_, saturation);
}
void TransportModelTwophase::getReorderIterations()
const std::vector<int>& TransportModelTwophase::getReorderIterations()
{
return reorder_iterations_;
};

View File

@ -77,7 +77,7 @@ namespace Opm
//// Return reorder iterations
////
//// \param[out] vector of iteration per cell
const std::vector<int>& getReorderIterations(){return reorder_iterations_;};
const std::vector<int>& getReorderIterations();
private:
virtual void solveSingleCell(const int cell);
virtual void solveMultiCell(const int num_cells, const int* cells);