cmdopt: default the constructor rather than empty it

This commit is contained in:
Danny Robson 2017-01-31 20:29:27 +11:00
parent 154f43d188
commit 82849cc157

View File

@ -33,7 +33,7 @@ namespace util::cmdopt {
public: public:
// we deal almost exclusively with vtables, so disable copying // we deal almost exclusively with vtables, so disable copying
// just in case we do something stupid. // just in case we do something stupid.
base () { } base () = default;
base (const base&) = delete; base (const base&) = delete;
base& operator= (const base&) = delete; base& operator= (const base&) = delete;