aboutsummaryrefslogtreecommitdiff
path: root/lib/Driver/Job.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-03-18 06:13:37 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-03-18 06:13:37 +0000
commitd57ac5990d22592665a67a28fc5d39f1155424d3 (patch)
tree55d7b1e950a6efd89b5d69a51af38188498f1070 /lib/Driver/Job.cpp
parent028801c66f37d6765ee98f2b1c79e74280ca73e5 (diff)
Driver: Rename Command::Argv to Command::Arguments to make it clearer
that this does not include the implicit first argument (the executable name). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67172 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Job.cpp')
-rw-r--r--lib/Driver/Job.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Driver/Job.cpp b/lib/Driver/Job.cpp
index 3cc8b29178..1efc38a8e8 100644
--- a/lib/Driver/Job.cpp
+++ b/lib/Driver/Job.cpp
@@ -14,8 +14,8 @@ using namespace clang::driver;
Job::~Job() {}
-Command::Command(const char *_Executable, const ArgStringList &_Argv)
- : Job(CommandClass), Executable(_Executable), Argv(_Argv) {
+Command::Command(const char *_Executable, const ArgStringList &_Arguments)
+ : Job(CommandClass), Executable(_Executable), Arguments(_Arguments) {
}
PipedJob::PipedJob() : Job(PipedJobClass) {}