diff --git a/include/boost/phoenix/core/detail/phx2_result.hpp b/include/boost/phoenix/core/detail/phx2_result.hpp index 76babd2..3f7f485 100644 --- a/include/boost/phoenix/core/detail/phx2_result.hpp +++ b/include/boost/phoenix/core/detail/phx2_result.hpp @@ -23,13 +23,13 @@ namespace boost { namespace phoenix { typedef char (&no)[2]; template - static yes check(typename A::type *); + static yes check_(typename A::type *); template - static no check(...); + static no check_(...); - static bool const value = (sizeof(yes) == sizeof(check(0))); + static bool const value = (sizeof(yes) == sizeof(check_(0))); typedef boost::mpl::bool_ type; };