diff options
author | Nico Weber <nicolasweber@gmx.de> | 2012-11-11 21:02:03 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2012-11-11 21:02:03 +0000 |
commit | 496b6dd5b1a9dda788b9dee39153af87d562c28e (patch) | |
tree | 1b0ff5570bc5dd57cc4402dcf0731c84fc6283ff | |
parent | 9493eb9bc40b235c629ad7fecdbec1e792f58879 (diff) | |
download | bcm5719-llvm-496b6dd5b1a9dda788b9dee39153af87d562c28e.tar.gz bcm5719-llvm-496b6dd5b1a9dda788b9dee39153af87d562c28e.zip |
Delete comment reference to non-existent method
llvm-svn: 167692
-rw-r--r-- | clang/include/clang/Lex/Preprocessor.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/clang/include/clang/Lex/Preprocessor.h b/clang/include/clang/Lex/Preprocessor.h index 64c72858c4a..e9095fbf44a 100644 --- a/clang/include/clang/Lex/Preprocessor.h +++ b/clang/include/clang/Lex/Preprocessor.h @@ -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); } |