Skip to content

Instantly share code, notes, and snippets.

@meshell
Created February 22, 2016 21:06
Show Gist options
  • Save meshell/b33ffaa47e1edcdcbe4c to your computer and use it in GitHub Desktop.
Save meshell/b33ffaa47e1edcdcbe4c to your computer and use it in GitHub Desktop.
class base {
public:
virtual ~base() = default;
base(const base&) = default;
base(base&&) = default;
base& operator=(const base&) = default;
base& operator=(base&&) = default;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment