Merge [47295] to release.

[SVN r53602]
This commit is contained in:
Ronald Garcia
2009-06-03 14:45:12 +00:00
parent ffe151458e
commit 8cb975feb7

View File

@ -173,6 +173,12 @@ class unwrap_reference
# endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
template <class T> inline typename unwrap_reference<T>::type&
unwrap_ref(T& t)
{
return t;
}
template<class T> inline T* get_pointer( reference_wrapper<T> const & r )
{
return r.get_pointer();