$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Paul Mensonides (pmenso57_at_[hidden])
Date: 2002-11-09 13:32:05
----- Original Message -----
From: "Martin Wille" <mw8329_at_[hidden]>
> Hello,
>
> this little test program
>
> #include <boost/preprocessor.hpp>
> int main() { return 0; }
>
> is compiled fine by gcc 2.95.3 and gcc 3.0.4.
> However gcc 3.1/3.2 (and 3.3) produce errors:
It *should* work fine now, though I haven't tested it. I had a pretty good
idea what the problem was. It was this:
#if BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_STRICT
This should have been:
#if BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_STRICT()
This happened twice in array/insert.hpp.
Paul Mensonides