Boost is now unneeded, thanks to the fix for PR253, contributed by Reid Spencer!
[oota-llvm.git] / include / boost / type_traits.hpp
1 //  (C) Copyright Boost.org 2000. Permission to copy, use, modify, sell and
2 //  distribute this software is granted provided this copyright notice appears
3 //  in all copies. This software is provided "as is" without express or implied
4 //  warranty, and with no claim as to its suitability for any purpose.
5
6 //  See http://www.boost.org for most recent version including documentation.
7 //  See boost/detail/type_traits.hpp and boost/detail/ob_type_traits.hpp
8 //  for full copyright notices.
9
10 #ifndef BOOST_TYPE_TRAITS_HPP
11 #define BOOST_TYPE_TRAITS_HPP
12
13 #include <boost/type_traits/fwd.hpp>
14 #include <boost/type_traits/ice.hpp>
15 #include <boost/type_traits/conversion_traits.hpp>
16 #include <boost/type_traits/arithmetic_traits.hpp>
17 #include <boost/type_traits/cv_traits.hpp>
18 #include <boost/type_traits/composite_traits.hpp>
19 #include <boost/type_traits/alignment_traits.hpp>
20 #include <boost/type_traits/object_traits.hpp>
21 #include <boost/type_traits/transform_traits.hpp>
22 #include <boost/type_traits/same_traits.hpp>
23 #include <boost/type_traits/function_traits.hpp>
24
25 /**************************************************************************/
26
27 //
28 // undefine helper macro's:
29 //
30 #undef BOOST_IS_CLASS
31 #undef BOOST_IS_ENUM
32 #undef BOOST_IS_UNION
33 #undef BOOST_IS_POD
34 #undef BOOST_IS_EMPTY
35 #undef BOOST_HAS_TRIVIAL_CONSTRUCTOR
36 #undef BOOST_HAS_TRIVIAL_COPY
37 #undef BOOST_HAS_TRIVIAL_ASSIGN
38 #undef BOOST_HAS_TRIVIAL_DESTRUCTOR
39
40 #endif // BOOST_TYPE_TRAITS_HPP
41
42
43