Skip to content

Instantly share code, notes, and snippets.

@meshell
Created February 22, 2016 21:06
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