diff --git a/dumux/porousmediumflow/velocityoutput.hh b/dumux/porousmediumflow/velocityoutput.hh
index 6df0c47e15a5fd29d1cc4f6016e1eba1c6bbe93f..b6e4205e16d0e29b432b128e4e572f4fabb305f1 100644
--- a/dumux/porousmediumflow/velocityoutput.hh
+++ b/dumux/porousmediumflow/velocityoutput.hh
@@ -305,7 +305,8 @@ public:
                     {
                         // check if we have Neumann no flow, we can just use 0
                         const auto neumannFlux = problem_.neumann(element, fvGeometry, elemVolVars, scvf);
-                        if (Dune::FloatCmp::eq<std::decay_t<decltype(neumannFlux)>, Dune::FloatCmp::CmpStyle::absolute>(neumannFlux, 0.0, 1e-30))
+                        using NumEqVector = std::decay_t<decltype(neumannFlux)>;
+                        if (Dune::FloatCmp::eq<NumEqVector>, Dune::FloatCmp::CmpStyle::absolute>(neumannFlux, NumEqVector(0.0), 1e-30))
                             scvfFluxes[scvfIndexInInside[localScvfIdx]] = 0;
                         // cubes
                         else if (dim == 1 || geomType.isCube())