Skip to content

Instantly share code, notes, and snippets.

@meshell
Created February 22, 2016 21:21
Show Gist options
  • Save meshell/be74189fde38e0fccf75 to your computer and use it in GitHub Desktop.
Save meshell/be74189fde38e0fccf75 to your computer and use it in GitHub Desktop.
struct base {
virtual std::string name() { return "default"; }
};
struct derived : public base {
// compile error: 'std::string derived::mame()' marked 'override', but does not override
std::string mame() override { return "derived!" }
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment