summaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2012-11-05 14:57:21 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2012-11-05 14:57:21 +0000
commit08f9c8d7761f6857ffb86da7a17e9a94a9629ba5 (patch)
tree7e953474eaa39925ea6691c0b084077963b6fdd6 /include/llvm
parent544533301e51e697abf7cc05979208d0ffc30973 (diff)
downloadllvm-08f9c8d7761f6857ffb86da7a17e9a94a9629ba5.tar.gz
llvm-08f9c8d7761f6857ffb86da7a17e9a94a9629ba5.tar.bz2
llvm-08f9c8d7761f6857ffb86da7a17e9a94a9629ba5.tar.xz
Add missing this->. Fixes pr14238.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167383 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Support/CommandLine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/CommandLine.h b/include/llvm/Support/CommandLine.h
index 8f7d879f2e..872c57998c 100644
--- a/include/llvm/Support/CommandLine.h
+++ b/include/llvm/Support/CommandLine.h
@@ -1507,7 +1507,7 @@ class bits : public Option, public bits_storage<DataType, Storage> {
typename ParserClass::parser_data_type();
if (Parser.parse(*this, ArgName, Arg, Val))
return true; // Parse Error!
- addValue(Val);
+ this->addValue(Val);
setPosition(pos);
Positions.push_back(pos);
return false;