From c696b361a1287814f74966ae12db530683c277b8 Mon Sep 17 00:00:00 2001 From: Kilian <kilian.weishaupt@iws.uni-stuttgart.de> Date: Wed, 29 Apr 2020 16:13:03 +0200 Subject: [PATCH] [fluxvarscachefiller] Mark params with [[maybe_unused]] --- dumux/porousmediumflow/fluxvariablescachefiller.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dumux/porousmediumflow/fluxvariablescachefiller.hh b/dumux/porousmediumflow/fluxvariablescachefiller.hh index 6e53a931c1..6f7b13970b 100644 --- a/dumux/porousmediumflow/fluxvariablescachefiller.hh +++ b/dumux/porousmediumflow/fluxvariablescachefiller.hh @@ -524,7 +524,7 @@ private: //! Solves the local systems and stores the result in the handles template< class InteractionVolume, class DataHandle> - void prepareDataHandle_(InteractionVolume& iv, DataHandle& handle, bool forceUpdate) + void prepareDataHandle_([[maybe_unused]] InteractionVolume& iv, [[maybe_unused]] DataHandle& handle, [[maybe_unused]] bool forceUpdate) { // (maybe) solve system subject to intrinsic permeability if constexpr (advectionEnabled) -- GitLab