[llvm-commits] [llvm] r167383 - /llvm/trunk/include/llvm/Support/CommandLine.h

Rafael Espindola rafael.espindola at gmail.com
Mon Nov 5 06:57:21 PST 2012


Author: rafael
Date: Mon Nov  5 08:57:21 2012
New Revision: 167383

URL: http://llvm.org/viewvc/llvm-project?rev=167383&view=rev
Log:
Add missing this->. Fixes pr14238.

Modified:
    llvm/trunk/include/llvm/Support/CommandLine.h

Modified: llvm/trunk/include/llvm/Support/CommandLine.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/CommandLine.h?rev=167383&r1=167382&r2=167383&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/CommandLine.h (original)
+++ llvm/trunk/include/llvm/Support/CommandLine.h Mon Nov  5 08:57:21 2012
@@ -1507,7 +1507,7 @@
       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;





More information about the llvm-commits mailing list