summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '3rdParty/Boost/src/boost/phoenix/core/reference.hpp')
-rw-r--r--3rdParty/Boost/src/boost/phoenix/core/reference.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/3rdParty/Boost/src/boost/phoenix/core/reference.hpp b/3rdParty/Boost/src/boost/phoenix/core/reference.hpp
index 8e73ad8..7f5170a 100644
--- a/3rdParty/Boost/src/boost/phoenix/core/reference.hpp
+++ b/3rdParty/Boost/src/boost/phoenix/core/reference.hpp
@@ -64,15 +64,17 @@ namespace boost { namespace phoenix
}
template <typename T>
+ inline
typename expression::reference<T>::type const
- inline ref(T & t)
+ ref(T & t)
{
return expression::reference<T>::make(t);
}
template <typename T>
+ inline
typename expression::reference<T const>::type const
- inline cref(T const & t)
+ cref(T const & t)
{
return expression::reference<T const>::make(t);
}