diff options
author | rdivacky <rdivacky@FreeBSD.org> | 2010-03-16 16:52:15 +0000 |
---|---|---|
committer | rdivacky <rdivacky@FreeBSD.org> | 2010-03-16 16:52:15 +0000 |
commit | 1033b7c1e32962948b01a25145829f17bc70a8de (patch) | |
tree | 52aebaff3a47b97dbac434530524c30967468412 /include/clang/Driver/Job.h | |
parent | 27c39af73c0d7d0b97e57b3a905040d4cefc9708 (diff) | |
download | FreeBSD-src-1033b7c1e32962948b01a25145829f17bc70a8de.zip FreeBSD-src-1033b7c1e32962948b01a25145829f17bc70a8de.tar.gz |
Update clang to r98631.
Diffstat (limited to 'include/clang/Driver/Job.h')
-rw-r--r-- | include/clang/Driver/Job.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Driver/Job.h b/include/clang/Driver/Job.h index 74ca083..5a789fb 100644 --- a/include/clang/Driver/Job.h +++ b/include/clang/Driver/Job.h @@ -100,7 +100,9 @@ private: public: PipedJob(); + virtual ~PipedJob(); + /// Add a command to the piped job (taking ownership). void addCommand(Command *C) { Commands.push_back(C); } const list_type &getCommands() const { return Commands; } @@ -130,7 +132,9 @@ private: public: JobList(); + virtual ~JobList(); + /// Add a job to the list (taking ownership). void addJob(Job *J) { Jobs.push_back(J); } const list_type &getJobs() const { return Jobs; } |