summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2012-11-11 21:02:03 +0000
committerNico Weber <nicolasweber@gmx.de>2012-11-11 21:02:03 +0000
commit03e67fbf7a2646447972742b6bb97c82ce4698fb (patch)
tree1eb5cdcde9623b567bbafeb0616f063fa3a7709a
parentbb23628148f555a4cf71f98c27096a7a804c085c (diff)
downloadclang-03e67fbf7a2646447972742b6bb97c82ce4698fb.tar.gz
clang-03e67fbf7a2646447972742b6bb97c82ce4698fb.tar.bz2
clang-03e67fbf7a2646447972742b6bb97c82ce4698fb.tar.xz
Delete comment reference to non-existent method
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167692 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Lex/Preprocessor.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/include/clang/Lex/Preprocessor.h b/include/clang/Lex/Preprocessor.h
index 64c72858c4..e9095fbf44 100644
--- a/include/clang/Lex/Preprocessor.h
+++ b/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);
}