summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '3rdParty/Boost/src/boost/phoenix/core/detail/phx2_result.hpp')
-rw-r--r--3rdParty/Boost/src/boost/phoenix/core/detail/phx2_result.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/3rdParty/Boost/src/boost/phoenix/core/detail/phx2_result.hpp b/3rdParty/Boost/src/boost/phoenix/core/detail/phx2_result.hpp
index 76babd2..3f7f485 100644
--- a/3rdParty/Boost/src/boost/phoenix/core/detail/phx2_result.hpp
+++ b/3rdParty/Boost/src/boost/phoenix/core/detail/phx2_result.hpp
@@ -23,13 +23,13 @@ namespace boost { namespace phoenix {
typedef char (&no)[2];
template <typename A>
- static yes check(typename A::type *);
+ static yes check_(typename A::type *);
template <typename A>
- static no check(...);
+ static no check_(...);
- static bool const value = (sizeof(yes) == sizeof(check<Result>(0)));
+ static bool const value = (sizeof(yes) == sizeof(check_<Result>(0)));
typedef boost::mpl::bool_<value> type;
};