@@ -193,8 +193,6 @@ struct SW_BUILDER_API Command : ICastable, CommandNode, detail::ResolvableComman
193193
194194 Command () = default ;
195195 Command (const SwBuilderContext &swctx);
196- // Command(const Command &);
197- // Command &operator=(const Command &);
198196 virtual ~Command ();
199197
200198 void prepare () override ;
@@ -215,8 +213,6 @@ struct SW_BUILDER_API Command : ICastable, CommandNode, detail::ResolvableComman
215213 void addInput (const Files &p);
216214 void addImplicitInput (const path &p);
217215 void addImplicitInput (const Files &p);
218- // void addIntermediate(const path &p);
219- // void addIntermediate(const Files &p);
220216 void addOutput (const path &p);
221217 void addOutput (const Files &p);
222218 path redirectStdin (const path &p);
@@ -231,9 +227,6 @@ struct SW_BUILDER_API Command : ICastable, CommandNode, detail::ResolvableComman
231227
232228 bool lessDuringExecution (const CommandNode &rhs) const override ;
233229
234- // void load(BinaryContext &bctx);
235- // void save(BinaryContext &bctx);
236-
237230 void onBeforeRun () noexcept override ;
238231 void onEnd () noexcept override ;
239232
@@ -312,11 +305,6 @@ struct SW_BUILDER_API ExecuteBuiltinCommand : Command
312305 ExecuteBuiltinCommand (const SwBuilderContext &swctx, const String &cmd_name, void *f, int version = 0 );
313306 virtual ~ExecuteBuiltinCommand () = default ;
314307
315- // path getProgram() const override { return "ExecuteBuiltinCommand"; };
316-
317- // template <class T>
318- // auto push_back(T &&v) { args.push_back(v); }
319-
320308 using Command::push_back;
321309 void push_back (const Strings &strings);
322310 void push_back (const Files &files);
0 commit comments