
Just ran cvs update. Something is wrong with range.hpp: g++34 -x c++ /usr/local/src/boost.cvs/boost/range.hpp -I /usr/local/src/boost.cvs -fsyntax-only In file included from /usr/local/src/boost.cvs/boost/range/begin.hpp:18, from /usr/local/src/boost.cvs/boost/range/functions.hpp:18, from /usr/local/src/boost.cvs/boost/range.hpp:18: /usr/local/src/boost.cvs/boost/range/config.hpp:24:21: missing binary operator before token "("

Hi Neal, "Neal Becker" <ndbecker2@verizon.net> wrote in message news:chvovi$qbl$2@sea.gmane.org... | Just ran cvs update. Something is wrong with range.hpp: | | g++34 -x c++ /usr/local/src/boost.cvs/boost/range.hpp | -I /usr/local/src/boost.cvs -fsyntax-only | In file included from /usr/local/src/boost.cvs/boost/range/begin.hpp:18, | from /usr/local/src/boost.cvs/boost/range/functions.hpp:18, | from /usr/local/src/boost.cvs/boost/range.hpp:18: | /usr/local/src/boost.cvs/boost/range/config.hpp:24:21: missing binary | operator before token "(" I don't have that compiler...can you make a patch? Thanks Thorsten

Thorsten Ottosen wrote:
Hi Neal,
"Neal Becker" <ndbecker2@verizon.net> wrote in message news:chvovi$qbl$2@sea.gmane.org... | Just ran cvs update. Something is wrong with range.hpp: | | g++34 -x c++ /usr/local/src/boost.cvs/boost/range.hpp | -I /usr/local/src/boost.cvs -fsyntax-only | In file included from /usr/local/src/boost.cvs/boost/range/begin.hpp:18, | from | /usr/local/src/boost.cvs/boost/range/functions.hpp:18, | from /usr/local/src/boost.cvs/boost/range.hpp:18: | /usr/local/src/boost.cvs/boost/range/config.hpp:24:21: missing binary | operator before token "("
I don't have that compiler...can you make a patch?
Is it only this compiler? I'm guessing that range.hpp is missing some include it needs, so that including only range.hpp causes a problem. Can anyone confirm or deny this on a different platform? That would help to isolate the problem. The error message is not very informative.

The missing header appears to be <boost/mpl/identity.hpp>. At least that fixes it here (gcc 3.3.4). -t On Sep 12, 2004, at 2:28 AM, Neal Becker wrote:
Thorsten Ottosen wrote:
Hi Neal,
"Neal Becker" <ndbecker2@verizon.net> wrote in message news:chvovi$qbl$2@sea.gmane.org... | Just ran cvs update. Something is wrong with range.hpp: | | g++34 -x c++ /usr/local/src/boost.cvs/boost/range.hpp | -I /usr/local/src/boost.cvs -fsyntax-only | In file included from /usr/local/src/boost.cvs/boost/range/begin.hpp:18, | from | /usr/local/src/boost.cvs/boost/range/functions.hpp:18, | from /usr/local/src/boost.cvs/boost/range.hpp:18: | /usr/local/src/boost.cvs/boost/range/config.hpp:24:21: missing binary | operator before token "("
I don't have that compiler...can you make a patch?
Is it only this compiler? I'm guessing that range.hpp is missing some include it needs, so that including only range.hpp causes a problem. Can anyone confirm or deny this on a different platform? That would help to isolate the problem. The error message is not very informative.
_______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Yeah, ok, adding boost/detail/workaround.hpp fixes it too, looks more direct, I hit send prematurely. I have no clue what's 'right', though... -t On Sep 12, 2004, at 11:13 AM, troy d.straszheim wrote:
The missing header appears to be <boost/mpl/identity.hpp>. At least that fixes it here (gcc 3.3.4).
-t
On Sep 12, 2004, at 2:28 AM, Neal Becker wrote:
Thorsten Ottosen wrote:
Hi Neal,
"Neal Becker" <ndbecker2@verizon.net> wrote in message news:chvovi$qbl$2@sea.gmane.org... | Just ran cvs update. Something is wrong with range.hpp: | | g++34 -x c++ /usr/local/src/boost.cvs/boost/range.hpp | -I /usr/local/src/boost.cvs -fsyntax-only | In file included from /usr/local/src/boost.cvs/boost/range/begin.hpp:18, | from | /usr/local/src/boost.cvs/boost/range/functions.hpp:18, | from /usr/local/src/boost.cvs/boost/range.hpp:18: | /usr/local/src/boost.cvs/boost/range/config.hpp:24:21: missing binary | operator before token "("
I don't have that compiler...can you make a patch?
Is it only this compiler? I'm guessing that range.hpp is missing some include it needs, so that including only range.hpp causes a problem. Can anyone confirm or deny this on a different platform? That would help to isolate the problem. The error message is not very informative.
_______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

"troy d.straszheim" <troy@resophonic.com> wrote in message news:7CE65998-049D-11D9-AF3B-000D932CFA46@resophonic.com... | Yeah, ok, adding boost/detail/workaround.hpp fixes it too, looks more | direct, I hit send prematurely. I have no clue what's 'right', | though... Applied ... workaround.hpp is best to include. Thanks to both of you :-) Thorsten
participants (3)
-
Neal Becker
-
Thorsten Ottosen
-
troy d.straszheim