mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Merge pull request #370 from blattms/fixes-comparison-warning
Prevent unsigned vs. signed int comparison warning
This commit is contained in:
commit
208b227ea8
@ -442,7 +442,7 @@ namespace detail {
|
|||||||
}
|
}
|
||||||
state.qs = ADB::constant(state.qs.value());
|
state.qs = ADB::constant(state.qs.value());
|
||||||
state.bhp = ADB::constant(state.bhp.value());
|
state.bhp = ADB::constant(state.bhp.value());
|
||||||
assert(state.canonical_phase_pressures.size() == Opm::BlackoilPhases::MaxNumPhases);
|
assert(state.canonical_phase_pressures.size() == static_cast<std::size_t>(Opm::BlackoilPhases::MaxNumPhases));
|
||||||
for (int canphase = 0; canphase < Opm::BlackoilPhases::MaxNumPhases; ++canphase) {
|
for (int canphase = 0; canphase < Opm::BlackoilPhases::MaxNumPhases; ++canphase) {
|
||||||
ADB& pp = state.canonical_phase_pressures[canphase];
|
ADB& pp = state.canonical_phase_pressures[canphase];
|
||||||
pp = ADB::constant(pp.value());
|
pp = ADB::constant(pp.value());
|
||||||
|
Loading…
Reference in New Issue
Block a user