Delete comment reference to non-existent method
authorNico Weber <nicolasweber@gmx.de>
Sun, 11 Nov 2012 21:02:03 +0000 (21:02 +0000)
committerNico Weber <nicolasweber@gmx.de>
Sun, 11 Nov 2012 21:02:03 +0000 (21:02 +0000)
llvm-svn: 167692

clang/include/clang/Lex/Preprocessor.h

index 64c7285..e9095fb 100644 (file)
@@ -555,11 +555,8 @@ public:
   void setPredefines(const char *P) { Predefines = P; }
   void setPredefines(const std::string &P) { Predefines = P; }
 
-  /// getIdentifierInfo - Return information about the specified preprocessor
-  /// identifier token.  The version of this method that takes two character
-  /// pointers is preferred unless the identifier is already available as a
-  /// string (this avoids allocation and copying of memory to construct an
-  /// std::string).
+  /// Return information about the specified preprocessor
+  /// identifier token.
   IdentifierInfo *getIdentifierInfo(StringRef Name) const {
     return &Identifiers.get(Name);
   }