From 9690ccc97836a91fa5c373333b15ea43b63014ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atgeirr=20Fl=C3=B8=20Rasmussen?= Date: Mon, 12 May 2014 09:18:52 +0200 Subject: [PATCH] Supress signed-unsigned comparison warning. --- opm/core/props/satfunc/SaturationPropsFromDeck_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opm/core/props/satfunc/SaturationPropsFromDeck_impl.hpp b/opm/core/props/satfunc/SaturationPropsFromDeck_impl.hpp index 8fca5ee0..330997ee 100644 --- a/opm/core/props/satfunc/SaturationPropsFromDeck_impl.hpp +++ b/opm/core/props/satfunc/SaturationPropsFromDeck_impl.hpp @@ -191,7 +191,7 @@ namespace Opm bool hysteresis_switch = false; if (newParserDeck->hasKeyword("SATOPTS")) { const std::vector& satopts = newParserDeck->getKeyword("SATOPTS")->getStringData(); - for (int i = 0; i < satopts.size(); ++i) { + for (size_t i = 0; i < satopts.size(); ++i) { if (satopts[i] == std::string("HYSTER")) { hysteresis_switch = true; } else {