Refs #2128 (fixed in trunk.)

[SVN r51512]
This commit is contained in:
Peter Dimov 2009-03-01 17:04:14 +00:00
parent 0af1959b30
commit f7aa9a8935

View File

@ -179,6 +179,11 @@ unwrap_ref(T& t)
return t;
}
template<class T> inline T* get_pointer( reference_wrapper<T> const & r )
{
return r.get_pointer();
}
} // namespace boost
#endif // #ifndef BOOST_REF_HPP_INCLUDED