summaryrefslogtreecommitdiff
path: root/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'command.h')
-rw-r--r--command.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/command.h b/command.h
index 5ee7d24..f0b708d 100644
--- a/command.h
+++ b/command.h
@@ -21,6 +21,7 @@ public:
template <typename... A>
Command(string cmd,A... a)
:cmd(cmd),args{a...}{}
+ Command(const Command &other) = default;
const string& command() const;
const vector<string>& arguments() const;