removed OPM_UNUSED

This commit is contained in:
Paul Egberts
2022-01-20 11:36:28 +01:00
parent 4e76ab742d
commit 31b08b4512

View File

@@ -124,7 +124,7 @@ LhsEval getSaltSaturation_(typename std::enable_if<!HasMember_saltSaturation<Flu
template <class FluidSystem, class FluidState, class LhsEval>
auto getSaltSaturation_(typename std::enable_if<HasMember_saltSaturation<FluidState>::value, const FluidState&>::type fluidState,
unsigned regionIdx OPM_UNUSED)
unsigned)
-> decltype(decay<LhsEval>(fluidState.saltSaturation()))
{ return decay<LhsEval>(fluidState.saltSaturation()); }