From f80cbb0dad16f974815a4ad8208f056ec58c9efc Mon Sep 17 00:00:00 2001 From: Gregor Jasny Date: Tue, 29 Dec 2015 20:41:10 +0100 Subject: [PATCH] Change check to s_check (like #8542) --- include/boost/type_traits/detail/mp_defer.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/type_traits/detail/mp_defer.hpp b/include/boost/type_traits/detail/mp_defer.hpp index 7910e54..f3beeb2 100644 --- a/include/boost/type_traits/detail/mp_defer.hpp +++ b/include/boost/type_traits/detail/mp_defer.hpp @@ -25,12 +25,12 @@ template class F, class... T> struct mp_valid_impl { template class G, class = G> - static boost::true_type check(int); + static boost::true_type check_s(int); template class> - static boost::false_type check(...); + static boost::false_type check_s(...); - using type = decltype(check(0)); + using type = decltype(check_s(0)); }; template class F, class... T>