From 8859e71a7ec8c03a9597e7e58607b8c8a4c4721e Mon Sep 17 00:00:00 2001 From: Andreas Lauser <and@poware.org> Date: Thu, 2 Feb 2012 18:08:19 +0000 Subject: [PATCH] fix more warnings when using optim.opts git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7611 2fb0f335-1f38-0410-981e-8018bf24f1b0 --- dumux/material/eos/pengrobinson.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dumux/material/eos/pengrobinson.hh b/dumux/material/eos/pengrobinson.hh index 1c83bed1ea..f0fba06995 100644 --- a/dumux/material/eos/pengrobinson.hh +++ b/dumux/material/eos/pengrobinson.hh @@ -153,7 +153,7 @@ public: Valgrind::CheckDefined(fs.temperature(phaseIdx)); Valgrind::CheckDefined(fs.pressure(phaseIdx)); - Scalar Vm; + Scalar Vm = 0; Valgrind::SetUndefined(Vm); Scalar T = fs.temperature(phaseIdx); @@ -291,8 +291,8 @@ protected: Scalar minVm; Scalar maxVm; - Scalar minP; - Scalar maxP; + Scalar minP(0); + Scalar maxP(1e100); // first, we need to find an isotherm where the EOS exhibits // a maximum and a minimum @@ -325,7 +325,7 @@ protected: // epsilon was added to the temperature. (this is case // rarely happens, though) const Scalar eps = - 1e-8; - bool hasExtrema = findExtrema_(minVm, maxVm, minP, maxP, a, b, T + eps); + bool __attribute__((unused)) hasExtrema = findExtrema_(minVm, maxVm, minP, maxP, a, b, T + eps); assert(hasExtrema); Scalar fStar = maxVm - minVm; -- GitLab