summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '3rdParty/Boost/src/boost/phoenix/operator/detail/define_operator.hpp')
-rw-r--r--3rdParty/Boost/src/boost/phoenix/operator/detail/define_operator.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/3rdParty/Boost/src/boost/phoenix/operator/detail/define_operator.hpp b/3rdParty/Boost/src/boost/phoenix/operator/detail/define_operator.hpp
index cc35f1a..3de63b8 100644
--- a/3rdParty/Boost/src/boost/phoenix/operator/detail/define_operator.hpp
+++ b/3rdParty/Boost/src/boost/phoenix/operator/detail/define_operator.hpp
@@ -44,8 +44,9 @@
{}; \
} \
template <typename Operand> \
+ inline \
typename result_of::BOOST_PP_CAT(make_, name)<Operand>::type \
- inline BOOST_PP_CAT(make_, name)(Operand const & operand) \
+ BOOST_PP_CAT(make_, name)(Operand const & operand) \
{ \
return functional::BOOST_PP_CAT(make_, name)()(operand); \
} \
@@ -83,8 +84,9 @@
{}; \
} \
template <typename Rhs, typename Lhs> \
+ inline \
typename result_of::BOOST_PP_CAT(make_, name)<Rhs, Lhs>::type \
- inline BOOST_PP_CAT(make_, name)(Lhs const & lhs, Rhs const & rhs) \
+ BOOST_PP_CAT(make_, name)(Lhs const & lhs, Rhs const & rhs) \
{ \
return functional::BOOST_PP_CAT(make_, name)()(lhs, rhs); \
} \