From ac1b918799d3d5665e674fe45a5c4a63d869adea Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Mon, 11 Apr 2016 15:01:31 +0200 Subject: [PATCH] ebos: fix GCC sign comparison warning in debug mode --- applications/ebos/eclthresholdpressure.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/ebos/eclthresholdpressure.hh b/applications/ebos/eclthresholdpressure.hh index 06d1648ce..c81752af0 100644 --- a/applications/ebos/eclthresholdpressure.hh +++ b/applications/ebos/eclthresholdpressure.hh @@ -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();