aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Option/ArgList.cpp
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2015-03-16 18:06:57 +0000
committerDavid Blaikie <dblaikie@gmail.com>2015-03-16 18:06:57 +0000
commit9f380a3ca0eb7fe88e315fc9af684db81456fd86 (patch)
tree8feda05ab02a4baf7a4fb54e3dd717e00693d955 /llvm/lib/Option/ArgList.cpp
parent322ffceaf5b413b61145c26fb524a1eeb5646239 (diff)
downloadllvm-9f380a3ca0eb7fe88e315fc9af684db81456fd86.zip
llvm-9f380a3ca0eb7fe88e315fc9af684db81456fd86.tar.gz
llvm-9f380a3ca0eb7fe88e315fc9af684db81456fd86.tar.bz2
Fix uses of reserved identifiers starting with an underscore followed by an uppercase letter
This covers essentially all of llvm's headers and libs. One or two weird cases I wasn't sure were worth/appropriate to fix. llvm-svn: 232394
Diffstat (limited to 'llvm/lib/Option/ArgList.cpp')
-rw-r--r--llvm/lib/Option/ArgList.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/Option/ArgList.cpp b/llvm/lib/Option/ArgList.cpp
index 85e956f..2de55ce 100644
--- a/llvm/lib/Option/ArgList.cpp
+++ b/llvm/lib/Option/ArgList.cpp
@@ -340,9 +340,8 @@ const char *InputArgList::MakeArgString(StringRef Str) const {
//
-DerivedArgList::DerivedArgList(const InputArgList &_BaseArgs)
- : BaseArgs(_BaseArgs) {
-}
+DerivedArgList::DerivedArgList(const InputArgList &BaseArgs)
+ : BaseArgs(BaseArgs) {}
DerivedArgList::~DerivedArgList() {}