]> git.lyx.org Git - lyx.git/blobdiff - boost/boost/ref.hpp
Also display the info about BibTeX databases in the TeX info panel.
[lyx.git] / boost / boost / ref.hpp
index 330ca6567f65d29b8e9fd892f33398268f026636..6058d6983197a72ab040bbfeb7e0b04006cc3ece 100644 (file)
@@ -173,6 +173,17 @@ 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();
+}
+
 } // namespace boost
 
 #endif // #ifndef BOOST_REF_HPP_INCLUDED