diff options
Diffstat (limited to 'lib/Driver/Job.cpp')
-rw-r--r-- | lib/Driver/Job.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Driver/Job.cpp b/lib/Driver/Job.cpp index 1b0ea18..280e7c4 100644 --- a/lib/Driver/Job.cpp +++ b/lib/Driver/Job.cpp @@ -14,9 +14,9 @@ using namespace clang::driver; Job::~Job() {} -Command::Command(const Action &_Source, const char *_Executable, +Command::Command(const Action &_Source, const char *_Executable, const ArgStringList &_Arguments) - : Job(CommandClass), Source(_Source), Executable(_Executable), + : Job(CommandClass), Source(_Source), Executable(_Executable), Arguments(_Arguments) { } @@ -30,4 +30,4 @@ void Job::addCommand(Command *C) { else cast<JobList>(this)->addJob(C); } - + |