Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - Internal error: template 990
Here is a small test-case: template<void f(int x)> struct A { }; void func(int x); typedef A<func> B; BTW, I can compile it if I omit the "x" from the first line: "template<void f(int)>" bye, Christof -- http://cmeerw.cjb.net Jabber: cmeerw jabber.at mailto cmeerw at web.de ICQ: 93773535, Yahoo!: cmeerw ...and what have you contributed to the Net? Oct 23 2001
These are all great bug reports. Have you a test suite, or just a large body of template code? Christof Meerwald wrote in message <9r4u9j$14u7$2 digitaldaemon.com>...Here is a small test-case: template<void f(int x)> struct A { }; void func(int x); typedef A<func> B; BTW, I can compile it if I omit the "x" from the first line: "template<void f(int)>" bye, Christof -- http://cmeerw.cjb.net Jabber: cmeerw jabber.at mailto cmeerw at web.de ICQ: 93773535, Yahoo!: cmeerw ...and what have you contributed to the Net? Oct 23 2001
On Tue, 23 Oct 2001 21:03:17 -0700, Walter wrote:These are all great bug reports. Have you a test suite, or just a large body of template code? Oct 24 2001
I'll try to get them all fixed! Christof Meerwald wrote in message <9r687q$2577$1 digitaldaemon.com>...On Tue, 23 Oct 2001 21:03:17 -0700, Walter wrote:These are all great bug reports. Have you a test suite, or just a large Oct 24 2001
|