summaryrefslogtreecommitdiff
path: root/boost/type_traits/remove_const.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/type_traits/remove_const.hpp')
-rw-r--r--boost/type_traits/remove_const.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/boost/type_traits/remove_const.hpp b/boost/type_traits/remove_const.hpp
index e238962c6d..6f1a193740 100644
--- a/boost/type_traits/remove_const.hpp
+++ b/boost/type_traits/remove_const.hpp
@@ -28,6 +28,12 @@ namespace boost {
#endif
#endif
+#if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES)
+
+ template <class T> using remove_const_t = typename remove_const<T>::type;
+
+#endif
+
} // namespace boost
#endif // BOOST_TT_REMOVE_CONST_HPP_INCLUDED