Revert support for clang 3.0 intrinsics in type traits.

As dicussed in:

http://lists.boost.org/Archives/boost/2011/06/182844.php


[SVN r72725]
This commit is contained in:
Daniel James
2011-06-23 19:07:45 +00:00
parent 0bd2b25d5b
commit 8ac524debe

View File

@ -124,7 +124,7 @@
# define BOOST_HAS_TYPE_TRAITS_INTRINSICS
#endif
#if (defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3) && !defined(__GCCXML__)))) || (__clang_major__ >= 3)
#if defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3) && !defined(__GCCXML__)))
# include <boost/type_traits/is_same.hpp>
# include <boost/type_traits/is_reference.hpp>
# include <boost/type_traits/is_volatile.hpp>