Merge fix for hash_set/has_map headers on GCC 4.3

[SVN r47425]
This commit is contained in:
Douglas Gregor
2008-07-14 18:45:05 +00:00
parent e37e2cb408
commit 10d20f476a

View File

@ -68,7 +68,7 @@
# define BOOST_HAS_SLIST
# define BOOST_HAS_HASH
# define BOOST_SLIST_HEADER <ext/slist>
# if defined(__GLIBCXX__) && __GLIBCXX__ < 20071018 // GCC <= 4.3.0
# if !defined(__GNUC__) || __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 3)
# define BOOST_HASH_SET_HEADER <ext/hash_set>
# define BOOST_HASH_MAP_HEADER <ext/hash_map>
# else