
On Dec 13, 2007 5:15 PM, Gennadiy Rozental <rogeeff@gmail.com> wrote:
Jurko Gospodnetić <jurko.gospodnetic <at> docte.hr> writes:
[I am repeating this post as no one replied to it and I guess it could have gotten overlooked in the original thread.]
Sorry, for the delay. I did see your patch and I am not sure I understand it.
How removing somespaces and some variable name change helps this compiler?
- predicate_result res( true ); + predicate_result res( true );
- static Left const L1( 1 ); - static Right const R1( 1 ); + static Left const leftOne ( 1 ); + static Right const rightOne( 1 );
Gennadiy
_______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
I would assume that the whitespace update was extraneous and not meaningful. I would also assume that L1 is one of those macros defined by the system's header files. The OP already said that R1 is a macro, so obviously naming a function as such would be a compiler error. Jason