cmdopt: default the constructor rather than empty it
This commit is contained in:
parent
154f43d188
commit
82849cc157
@ -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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user