Merge pull request #343 from akva2/janitoring

quell unhandled value in switch warning
This commit is contained in:
Atgeirr Flø Rasmussen 2019-06-19 10:06:48 +02:00 committed by GitHub
commit 02f7359570

View File

@ -436,7 +436,6 @@ public:
throw std::logic_error("Not implemented: relativePermeabilities() option for unknown EclMultiplexerApproach (=" throw std::logic_error("Not implemented: relativePermeabilities() option for unknown EclMultiplexerApproach (="
+ std::to_string(params.approach()) + ")"); + std::to_string(params.approach()) + ")");
} }
} }
/*! /*!
@ -500,6 +499,8 @@ public:
TwoPhaseMaterial::updateHysteresis(params.template getRealParams<EclTwoPhaseApproach>(), TwoPhaseMaterial::updateHysteresis(params.template getRealParams<EclTwoPhaseApproach>(),
fluidState); fluidState);
break; break;
case EclOnePhaseApproach:
break;
} }
} }
}; };