X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=3rdparty%2Fboost%2Fboost%2Ftype_traits%2Fremove_reference.hpp;h=70949fbb2a93c0dd2b47881a0ad75183a23b9d81;hb=3ddb4c5389da0b20f761551c9463caea66f04d85;hp=f75e67783bb8c0800bb31eed3f965b7461dbaf10;hpb=bd74a15ebdc2091ed39710a39c18c524094466a4;p=lyx.git diff --git a/3rdparty/boost/boost/type_traits/remove_reference.hpp b/3rdparty/boost/boost/type_traits/remove_reference.hpp index f75e67783b..70949fbb2a 100644 --- a/3rdparty/boost/boost/type_traits/remove_reference.hpp +++ b/3rdparty/boost/boost/type_traits/remove_reference.hpp @@ -48,6 +48,11 @@ template struct remove_reference{ typedef T type; }; template struct remove_reference{ typedef T type; }; #endif +#if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES) + + template using remove_reference_t = typename remove_reference::type; + +#endif } // namespace boost