From 7c5078b9b584e10b681c96414224d7957b9472e9 Mon Sep 17 00:00:00 2001 From: Drew Hubley Date: Sun, 17 Apr 2022 18:46:17 -0300 Subject: [PATCH] Resolved compile warning for convolve. Missed it in the original pr --- include/xtensor/xmath.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/xtensor/xmath.hpp b/include/xtensor/xmath.hpp index d31adbdf7..da33a47bc 100644 --- a/include/xtensor/xmath.hpp +++ b/include/xtensor/xmath.hpp @@ -3048,7 +3048,7 @@ namespace detail { } template - inline auto convolve_impl(E1&& e1, E2&& e2, convolve_mode::full mode) + inline auto convolve_impl(E1&& e1, E2&& e2, convolve_mode::full) { using value_type = typename std::decay::type::value_type;