From aaa819e418f30e27d5eb3ee2084fc41c58c7f28b Mon Sep 17 00:00:00 2001 From: Drew Hubley Date: Thu, 16 Nov 2023 14:05:42 -0400 Subject: [PATCH] Specialized for fixed_shape --- include/xtensor/xstrided_view.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/xtensor/xstrided_view.hpp b/include/xtensor/xstrided_view.hpp index c4a187a80..f16ace56d 100644 --- a/include/xtensor/xstrided_view.hpp +++ b/include/xtensor/xstrided_view.hpp @@ -809,17 +809,17 @@ namespace xt namespace detail { - template + template struct rebind_shape; - template - struct rebind_shape>>::value>> + template + struct rebind_shape> { - using type = S; + using type = xt::fixed_shape; }; template - struct rebind_shape>>::value>> + struct rebind_shape { using type = rebind_container_t; };