Change check to s_check (like #8542)

This commit is contained in:
Gregor Jasny
2015-12-29 20:41:10 +01:00
parent bc58964228
commit f80cbb0dad

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>