Skip to content

Commit 475bedb

Browse files
author
Mykola Vankovych
committed
Added fixes for building with clang 19 (more strict template matching rules)
1 parent ae52796 commit 475bedb

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

include/xtensor/xexpression_traits.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -103,16 +103,15 @@ namespace xt
103103
using type = xarray<T, L>;
104104
};
105105

106-
#if defined(__GNUC__) && (__GNUC__ > 6)
107-
#if __cplusplus == 201703L
106+
// Workaround for rebind_container problems when C++17 feature is enabled
107+
#ifdef __cpp_template_template_args
108108
template <template <class, std::size_t, class, bool> class S, class X, std::size_t N, class A, bool Init>
109109
struct xtype_for_shape<S<X, N, A, Init>>
110110
{
111111
template <class T, layout_type L>
112112
using type = xarray<T, L>;
113113
};
114-
#endif // __cplusplus == 201703L
115-
#endif // __GNUC__ && (__GNUC__ > 6)
114+
#endif // __cpp_template_template_args
116115

117116
template <template <class, std::size_t> class S, class X, std::size_t N>
118117
struct xtype_for_shape<S<X, N>>

include/xtensor/xstorage.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1637,8 +1637,8 @@ namespace xt
16371637
return !(lhs < rhs);
16381638
}
16391639

1640-
// Workaround for rebind_container problems on GCC 8 with C++17 enabled
1641-
#if defined(__GNUC__) && __GNUC__ > 6 && !defined(__clang__) && __cplusplus >= 201703L
1640+
// Workaround for rebind_container problems when C++17 feature is enabled
1641+
#ifdef __cpp_template_template_args
16421642
template <class X, class T, std::size_t N>
16431643
struct rebind_container<X, aligned_array<T, N>>
16441644
{

include/xtensor/xutils.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,8 @@ namespace xt
10231023
using type = C<X, allocator>;
10241024
};
10251025

1026-
#if defined(__GNUC__) && __GNUC__ > 6 && !defined(__clang__) && __cplusplus >= 201703L
1026+
// Workaround for rebind_container problems when C++17 feature is enabled
1027+
#ifdef __cpp_template_template_args
10271028
template <class X, class T, std::size_t N>
10281029
struct rebind_container<X, std::array<T, N>>
10291030
{

0 commit comments

Comments
 (0)