How is BOOST_SLIST_HEADER meant to be used?

I've modified my code to read: #ifdef BOOST_HAS_SLIST #include BOOST_SLIST_HEADER Now it is failing with the following compilers: mingw borland What am I missing here? Robert Ramey

I've modified my code to read:
#ifdef BOOST_HAS_SLIST
#include BOOST_SLIST_HEADER
Now it is failing with the following compilers:
mingw
borland
What am I missing here?
Looks like Doug didn't add a default value for BOOST_SLIST_HEADER if it isn't otherwise defined: I'll add one to boost/config/suffix.hpp (works for me on MinGW and Borland now). Doug: Did you add docs for this new macro BTW? John.

On Feb 7, 2006, at 5:59 AM, John Maddock wrote:
Looks like Doug didn't add a default value for BOOST_SLIST_HEADER if it isn't otherwise defined: I'll add one to boost/config/ suffix.hpp (works for me on MinGW and Borland now).
Thanks.
Doug: Did you add docs for this new macro BTW?
I'm doing so now, along with the analogous headers for hash_set and hash_map. Doug
participants (3)
-
Douglas Gregor
-
John Maddock
-
Robert Ramey