[boost] Re: [math constants] VC++ experts needed :)
by Daniel Frey other posts by this author
Mar 10 2004 6:01PM messages near this date
Re: [boost] Re: [math constants] C++ Language gurus views
neededandCodewarrior & Comeau testers
|
[boost] Re: [math constants] VC++ experts needed :)
OK, thanks for the tests so far. What we can see is that operator T()
caused the ICE (as I suspected), but now we need to find out what
exactly the problems with the current version is. It seems to me that
the VC7.1 has problems deducing template template parameters. Could the
interested folks please test whether is_constant works as expected? It's
AFAICS the basic requirement for anything else to work. The next step is
to test whether it's a problem for the VC to deduce parameters from base
classes. Here's some code to illustrate the idea:
template< typename T > class V {};
template< template<typename> class T > struct B {};
struct D : B<V> {};
template< typename T >
void f( const B<V> & ) {}
int main()
{
D d;
f( d );
}
Regards, Daniel
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
Thread:
Thorsten Ottosen
Thorsten Ottosen
Daniel Frey
Thorsten Ottosen
Daniel Frey
Thorsten Ottosen
Daniel Frey
Thorsten Ottosen
Guillaume Melquiond
Daniel Frey
Bronek Kozicki
Bronek Kozicki
Bronek Kozicki
Daniel Frey
Bronek Kozicki
Daniel Frey
Daniel Frey
Bronek Kozicki
Daniel Frey
Daniel Frey
Bronek Kozicki
Daniel Frey
Bronek Kozicki
Bronek Kozicki
Daniel Frey
Paul A Bristow
Paul A Bristow
Paul A Bristow
Paul A Bristow
Phil Richards
Daniel Frey
Paul A Bristow
David Abrahams
Paul A Bristow
David Abrahams
|