I actually managed to run into a kind of bug in C++ that's new to me.
struct Base {
void print(void) {}
};
struct Derived : Base {
void print(void) {
Base:print();
}
};
int main(int, char **) {
Derived d;
d.print();
return 0;
}
Here Derived::print() wants to call the Base::print() function as part of its implementation. Unfortunately,...
struct Base {
void print(void) {}
};
struct Derived : Base {
void print(void) {
Base:print();
}
};
int main(int, char **) {
Derived d;
d.print();
return 0;
}
Here Derived::print() wants to call the Base::print() function as part of its implementation. Unfortunately,...
Create a custom theme