forked from boostorg/type_traits
Change check to s_check (like #8542)
This commit is contained in:
@ -25,12 +25,12 @@ template<template<class...> class F, class... T>
|
||||
struct mp_valid_impl
|
||||
{
|
||||
template<template<class...> class G, class = G<T...>>
|
||||
static boost::true_type check(int);
|
||||
static boost::true_type check_s(int);
|
||||
|
||||
template<template<class...> class>
|
||||
static boost::false_type check(...);
|
||||
static boost::false_type check_s(...);
|
||||
|
||||
using type = decltype(check<F>(0));
|
||||
using type = decltype(check_s<F>(0));
|
||||
};
|
||||
|
||||
template<template<class...> class F, class... T>
|
||||
|
Reference in New Issue
Block a user