mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-18 21:43:27 -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.
|
||||
|
||||
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;
|
||||
solveGravityColumn(columns.second[i]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user