We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 53ad31c + 03e5ea4 commit 50b986cCopy full SHA for 50b986c
2 files changed
include/xtensor/xcontainer.hpp
@@ -34,7 +34,6 @@ namespace xt
34
struct xcontainer_iterable_types
35
{
36
using inner_shape_type = typename xcontainer_inner_types<D>::inner_shape_type;
37
- using storage_type = typename xcontainer_inner_types<D>::storage_type;
38
using stepper = xstepper<D>;
39
using const_stepper = xstepper<const D>;
40
};
include/xtensor/xexpression.hpp
@@ -527,7 +527,7 @@ namespace xt
527
using inner_backstrides_type = xtl::mpl::eval_if_t<has_strides<E>,
528
detail::expr_inner_backstrides_type<E>,
529
get_strides_type<shape_type>>;
530
- using storage_type = xtl::mpl::eval_if_t<has_data_interface<E>,
+ using storage_type = xtl::mpl::eval_if_t<has_storage_type<E>,
531
detail::expr_storage_type<E>,
532
make_invalid_type<>>;
533
0 commit comments