diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-01-08 07:37:03 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-01-08 07:37:03 +0000 |
commit | 41761d67291ae9ac74843f31737a96157d982c0b (patch) | |
tree | d5289c38208497b3c677c9253b20ab859ee7e211 | |
parent | 32a8ad526f9bc00539f000a2dd1ac3e167db61c1 (diff) |
Fix comment because we could have arbitrary number of overloaded functions with
the same name.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61920 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/DeclBase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/DeclBase.h b/include/clang/AST/DeclBase.h index 482bf12b46..21239e377b 100644 --- a/include/clang/AST/DeclBase.h +++ b/include/clang/AST/DeclBase.h @@ -497,7 +497,7 @@ public: /// lookup - Find the declarations (if any) with the given Name in /// this context. Returns a range of iterators that contains all of - /// the declarations with this name (which may be 0, 1, or 2 + /// the declarations with this name (which may be 0, 1, or more /// declarations). If two declarations are returned, the declaration /// in the "ordinary" identifier namespace will precede the /// declaration in the "tag" identifier namespace (e.g., values |