We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3ad4ed commit 6132f18Copy full SHA for 6132f18
include/swift/Driver/Job.h
@@ -236,6 +236,8 @@ class Job {
236
ExtraEnvironment(std::move(ExtraEnvironment)),
237
FilelistFileInfos(std::move(Infos)) {}
238
239
+ virtual ~Job();
240
+
241
const JobAction &getSource() const {
242
return *SourceAndCondition.getPointer();
243
}
lib/Driver/Job.cpp
@@ -181,6 +181,7 @@ CommandOutput::dump() const {
181
llvm::errs() << '\n';
182
183
184
+Job::~Job() = default;
185
186
void Job::printArguments(raw_ostream &os,
187
const llvm::opt::ArgStringList &Args) {
0 commit comments