File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ template <typename T> class RangeLikeType {
2828 template <typename Y> static auto test (Y *) -> decltype(std::declval<const Y &>().begin(), std::declval<const Y &>().end(), std::true_type());
2929 template <typename > static auto test (...) -> std::false_type;
3030public:
31- static inline constexpr bool value = decltype (test<std::remove_reference_t <std::remove_const_t <T>>>( nullptr ))() ;
31+ static inline constexpr bool value = decltype (test<std::remove_reference_t <std::remove_const_t <T>>>( nullptr ))::value ;
3232};
3333
3434template <typename RE> struct regular_expression {
Original file line number Diff line number Diff line change @@ -2960,7 +2960,7 @@ template <typename T> class RangeLikeType {
29602960 template <typename Y> static auto test (Y *) -> decltype(std::declval<const Y &>().begin(), std::declval<const Y &>().end(), std::true_type());
29612961 template <typename > static auto test (...) -> std::false_type;
29622962public:
2963- static inline constexpr bool value = decltype (test<std::remove_reference_t <std::remove_const_t <T>>>( nullptr ))() ;
2963+ static inline constexpr bool value = decltype (test<std::remove_reference_t <std::remove_const_t <T>>>( nullptr ))::value ;
29642964};
29652965
29662966template <typename RE> struct regular_expression {
You can’t perform that action at this time.
0 commit comments