Raw File
cxx_override.cpp

struct A
{
  virtual void doNothing() {}
};
struct B : A
{
  void doNothing() override {}
};
back to top