diff --git a/src/discretization/stencil_weight.hpp b/src/discretization/stencil_weight.hpp index 1f7ef4641e..75398de2ea 100644 --- a/src/discretization/stencil_weight.hpp +++ b/src/discretization/stencil_weight.hpp @@ -87,14 +87,14 @@ class DiscreteStencilWeightManager template bool isNegligible(const W &weight, const weight_t &zero, double tolerance = 1e-12) const; - template::value, typename std::enable_if, W>::value>::type * = nullptr> + template::value, typename std::enable_if, W>::value>::type * = nullptr> bool isNegligible(const std::array &weight, const weight_t &zero, double tolerance = 1e-12) const; template, W>::value>::type * = nullptr> bool isNegligible(const std::vector &weight, const weight_t &zero, double tolerance = 1e-12) const; template void sum(const W &weight, double factor, W *target) const; - template::value, typename std::enable_if, W>::value>::type * = nullptr> + template::value, typename std::enable_if, W>::value>::type * = nullptr> void sum(const std::array &weight, double factor, std::array *target) const; template, W>::value>::type * = nullptr> void sum(const std::vector &weight, double factor, std::vector *target) const;