mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
solveGravity(): Don't compare signed and unsigned expressions.
This commit is contained in:
parent
d2e4f5d664
commit
2cd5cfb867
@ -629,7 +629,7 @@ namespace Opm
|
|||||||
|
|
||||||
// Solve on all columns.
|
// Solve on all columns.
|
||||||
|
|
||||||
for (int i = 0; i < columns.second.size(); i++) {
|
for (std::vector<std::vector<int> >::size_type i = 0; i < columns.second.size(); i++) {
|
||||||
// std::cout << "==== new column" << std::endl;
|
// std::cout << "==== new column" << std::endl;
|
||||||
solveGravityColumn(columns.second[i]);
|
solveGravityColumn(columns.second[i]);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user