mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
ebos: fix GCC sign comparison warning in debug mode
This commit is contained in:
@@ -97,7 +97,7 @@ public:
|
|||||||
// ECFV spatial discretization with TPFA). if you try to use
|
// ECFV spatial discretization with TPFA). if you try to use
|
||||||
// it with something else, you're currently out of luck,
|
// it with something else, you're currently out of luck,
|
||||||
// sorry!
|
// sorry!
|
||||||
assert((int) simulator_.model().numGridDof() == numElements);
|
assert(simulator_.model().numGridDof() == numElements);
|
||||||
|
|
||||||
const auto& gridManager = simulator_.gridManager();
|
const auto& gridManager = simulator_.gridManager();
|
||||||
Opm::EclipseStateConstPtr eclState = gridManager.eclState();
|
Opm::EclipseStateConstPtr eclState = gridManager.eclState();
|
||||||
|
|||||||
Reference in New Issue
Block a user