Merge pull request #23 from gjasny/rename_check_for_apple

Change check to s_check (like #8542)
This commit is contained in:
jzmaddock
2015-12-30 18:38:01 +00:00

View File

@ -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>