Fix: Added check for already defined BOOST_NO_HASH and BOOST_NO_SLIST

[SVN r48254]
This commit is contained in:
Jürgen Hunold
2008-08-20 11:51:44 +00:00
parent 81d37eb28b
commit 1884e62119

View File

@ -266,11 +266,11 @@
// Define BOOST_NO_SLIST and BOOST_NO_HASH if required.
// Note that this is for backwards compatibility only.
//
# ifndef BOOST_HAS_SLIST
# if !defined(BOOST_HAS_SLIST) && !defined(BOOST_NO_SLIST)
# define BOOST_NO_SLIST
# endif
# ifndef BOOST_HAS_HASH
# if !defined(BOOST_HAS_HASH) && !defined(BOOST_NO_HASH)
# define BOOST_NO_HASH
# endif