Re: [boost] mpl::if_ and ICE triggered on GNU g++-cvs-today

2003-07-10 Thread Aleksey Gurtovoy
Markus Werle wrote: > Hi! Hi Markus, > > Though Intel C++ compiles this without complaint > gcc fails with ICE on this code snippet, which is > preprocessor output of boost code: > > struct void_ {}; > > template< > bool C > , typename T1 > , typename T2 > > > struct if_c > { >

[boost] mpl::if_ and ICE triggered on GNU g++-cvs-today

2003-07-10 Thread Markus Werle
Hi! Though Intel C++ compiles this without complaint gcc fails with ICE on this code snippet, which is preprocessor output of boost code: struct void_ {}; template< bool C , typename T1 , typename T2 > struct if_c { typedef T1 type; }; template< typename T1 ,