|
From: <a2...@di...> - 2003-05-13 14:13:26
|
Hi to all.
I have found that when I define a class in this way:
class A: B, virtual C
{
...
};
... and I type anything in MinGW GDB 5.2.1 (list, info source, run...),
it crashes. It does not crash in these cases:
class A: B {};
class A: virtual C {};
... only when I mix the types of inheritance. Any idea? This does not
happen in Cygwin GDB or in Linux GDB.
Thanks in advance,
Daniel Bautista
|