// Source - Can I create an *alias* member function in C++?
// Posted by Pietro, modified by community. See post 'Timeline' for change history
// Retrieved 2025-12-03, License - CC BY-SA 4.0
class B {
virtual int F(int i) = 0;
inline int G(int i) { return F(i);// Source - Can I create an *alias* member function in C++?
// Posted by Pietro, modified by community. See post 'Timeline' for change history
// Retrieved 2025-12-03, License - CC BY-SA 4.0
class B {
virtual int F(int i) = 0UPDATEUPDATE;
};
}
};