mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-26 17:20:59 -06:00
Tag Potentially Unused Parameters as Maybe_Unused
We don't reference any of the input parameters unless we're running a thermal simulation.
This commit is contained in:
parent
58f985a741
commit
cae0866e60
@ -251,10 +251,10 @@ public:
|
||||
* conduction for energy.
|
||||
*/
|
||||
template <class Context, class FluidState>
|
||||
void setThermalFlow(const Context& context,
|
||||
unsigned bfIdx,
|
||||
unsigned timeIdx,
|
||||
const FluidState& boundaryFluidState)
|
||||
void setThermalFlow([[maybe_unused]] const Context& context,
|
||||
[[maybe_unused]] unsigned bfIdx,
|
||||
[[maybe_unused]] unsigned timeIdx,
|
||||
[[maybe_unused]] const FluidState& boundaryFluidState)
|
||||
{
|
||||
// set the mass no-flow condition
|
||||
setNoFlow();
|
||||
|
Loading…
Reference in New Issue
Block a user