]> git.lyx.org Git - lyx.git/blobdiff - boost/boost/ref.hpp
attempt to make LyX linkable without NLS, assuming dummy available() should return...
[lyx.git] / boost / boost / ref.hpp
index 0d747bd1b60cc5ab2febed6739a308f43ca0246d..6058d6983197a72ab040bbfeb7e0b04006cc3ece 100644 (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();