Thread overview
new C++ 8.29.16 beta
Jul 25, 2002
Walter
Jul 25, 2002
Jan Knepper
Jul 25, 2002
Walter
Jul 25, 2002
Jan Knepper
Jul 25, 2002
Christof Meerwald
July 25, 2002
o More template problems fixed
o New -wc switch
o Better error messages for too-long identifiers


www.digitalmars.com/dmc/dmcppDownload.html



July 25, 2002
Wow!
You are really on a roll aren't you?!
Jan



Walter wrote:

> o More template problems fixed
> o New -wc switch
> o Better error messages for too-long identifiers
>
> www.digitalmars.com/dmc/dmcppDownload.html

July 25, 2002
"Jan Knepper" <jan@smartsoft.cc> wrote in message news:3D402C1C.58093161@smartsoft.cc...
> Wow!
> You are really on a roll aren't you?!
> Jan

I just want to get back to work on D!


July 25, 2002
Walter wrote:

> "Jan Knepper" <jan@smartsoft.cc> wrote in message
> > Wow!
> > You are really on a roll aren't you?!
> > Jan
> I just want to get back to work on D!

I bet!
Jan


July 25, 2002
another bug report:

template<class T>
struct A
{
  A()
  { }

  A(const T *t)
  { }
};

template <class T>
struct B
{
  void f()
  { }

  void f(const A<T> &a)
  { }
};


int main()
{
  B<char> b;
  b.f("");
  // Error: no match for function 'f(char *)'

  return 0;
}


bye, Christof

-- 
http://cmeerw.org                                 JID: cmeerw@jabber.at mailto cmeerw at web.de

...and what have you contributed to the Net?