Apply modernize-use-equals-default

This commit is contained in:
Alexey Rybalchenko
2021-05-26 23:49:15 +02:00
committed by Dennis Klein
parent 9444de5868
commit 6aeac265ec
40 changed files with 49 additions and 49 deletions

View File

@@ -355,7 +355,7 @@ struct Cmds
using container = std::vector<std::unique_ptr<Cmd>>;
struct CommandFormatError : std::runtime_error { using std::runtime_error::runtime_error; };
explicit Cmds() {}
explicit Cmds() = default;
template<typename... Rest>
explicit Cmds(std::unique_ptr<Cmd>&& first, Rest&&... rest)