]> git.lyx.org Git - lyx.git/blobdiff - 3rdparty/boost/boost/type_traits/remove_reference.hpp
Remove python warning
[lyx.git] / 3rdparty / boost / boost / type_traits / remove_reference.hpp
index f75e67783bb8c0800bb31eed3f965b7461dbaf10..70949fbb2a93c0dd2b47881a0ad75183a23b9d81 100644 (file)
@@ -48,6 +48,11 @@ template <class T> struct remove_reference<T&volatile>{ typedef T type; };
 template <class T> struct remove_reference<T&const volatile>{ typedef T type; };
 #endif
 
+#if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES)
+
+   template <class T> using remove_reference_t = typename remove_reference<T>::type;
+
+#endif
 
 } // namespace boost