"Jaap Suter" <[EMAIL PROTECTED]> writes:

> Seriously though, I had some funny problems with MSVC. For example, I got
> the following error on some lines:
>
>     syntax error : ''
>
> That's right, there is nothing in between the quotes. Turns out the
> following doesn't work on MSVC, in some cases:
>
>     foo( some_template< N >::type() );
>
> I had to replace those with:
>
>     typedef some_template< N >::type() bar;
These must be a typo------------------^^
>     foo( bar() );


> I had some other interesting things as well. I will add them all to the MPL
> wiki, as well as the GCC problems. I will also add an item on the lambda
> situation and the work-arounds.

Cool, thanks!


-- 
                       David Abrahams
   [EMAIL PROTECTED] * http://www.boost-consulting.com
Boost support, enhancements, training, and commercial distribution

_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Reply via email to