summaryrefslogtreecommitdiff
path: root/boost/type_traits/remove_bounds.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/type_traits/remove_bounds.hpp')
-rw-r--r--boost/type_traits/remove_bounds.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/boost/type_traits/remove_bounds.hpp b/boost/type_traits/remove_bounds.hpp
index 56988d24e0..cd0565d28f 100644
--- a/boost/type_traits/remove_bounds.hpp
+++ b/boost/type_traits/remove_bounds.hpp
@@ -16,6 +16,13 @@ namespace boost
template <class T> struct remove_bounds : public remove_extent<T> {};
+#if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES)
+
+template <class T> using remove_bounds_t = typename remove_bounds<T>::type;
+
+#endif
+
+
} // namespace boost
#endif // BOOST_TT_REMOVE_BOUNDS_HPP_INCLUDED