c++ - template virtual member functions
generally in the 9.3.1 area..
template <class T> struct A {
virtual void vfn() = 0;
void fn() { vfn(); }
};
void main() {
A<int> a;
a.fn();
}
Compiles without error (??) and generates a protection fault when run.
Richard
Jan 04 2003
It should generate a compile error. I'll add it to the list to be
fixed. -Walter
"Richard" <fractal clark.net> wrote in message
news:av7apf$se7$1 digitaldaemon.com...
generally in the 9.3.1 area..
template <class T> struct A {
virtual void vfn() = 0;
void fn() { vfn(); }
};
void main() {
A<int> a;
a.fn();
}
Compiles without error (??) and generates a protection fault when run.
Richard
Jan 04 2003








"Walter" <walter digitalmars.com>