From: Rafael Espindola Date: Mon, 5 Nov 2012 14:57:21 +0000 (+0000) Subject: Add missing this->. Fixes pr14238. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6cc02e0026ec4790eacf4b58f9a553bb9acb3a13;p=platform%2Fupstream%2Fllvm.git Add missing this->. Fixes pr14238. llvm-svn: 167383 --- diff --git a/llvm/include/llvm/Support/CommandLine.h b/llvm/include/llvm/Support/CommandLine.h index 8f7d879..872c579 100644 --- a/llvm/include/llvm/Support/CommandLine.h +++ b/llvm/include/llvm/Support/CommandLine.h @@ -1507,7 +1507,7 @@ class bits : public Option, public bits_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;