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:
parent
b5951a6ec7
commit
ac1b918799
@ -97,7 +97,7 @@ public:
|
||||
// ECFV spatial discretization with TPFA). if you try to use
|
||||
// it with something else, you're currently out of luck,
|
||||
// sorry!
|
||||
assert((int) simulator_.model().numGridDof() == numElements);
|
||||
assert(simulator_.model().numGridDof() == numElements);
|
||||
|
||||
const auto& gridManager = simulator_.gridManager();
|
||||
Opm::EclipseStateConstPtr eclState = gridManager.eclState();
|
||||
|
Loading…
Reference in New Issue
Block a user