Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/boost/type_traits/remove_bounds.hpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 
0002 //  (C) Copyright Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000.
0003 //  Use, modification and distribution are subject to the Boost Software License,
0004 //  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0005 //  http://www.boost.org/LICENSE_1_0.txt).
0006 //
0007 //  See http://www.boost.org/libs/type_traits for most recent version including documentation.
0008 
0009 #ifndef BOOST_TT_REMOVE_BOUNDS_HPP_INCLUDED
0010 #define BOOST_TT_REMOVE_BOUNDS_HPP_INCLUDED
0011 
0012 #include <boost/type_traits/remove_extent.hpp>
0013 
0014 namespace boost 
0015 {
0016 
0017 template <class T> struct remove_bounds : public remove_extent<T> {};
0018 
0019 #if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES)
0020 
0021 template <class T> using remove_bounds_t = typename remove_bounds<T>::type;
0022 
0023 #endif
0024 
0025 
0026 } // namespace boost
0027 
0028 #endif // BOOST_TT_REMOVE_BOUNDS_HPP_INCLUDED