diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-03-06 07:15:06 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-03-06 07:15:06 +0000 |
commit | faa7fac3f8627f53f2c5aa06f0ad8832098872f5 (patch) | |
tree | 7714dadffc9b488e5c0a7f4b062e863e8da767fd | |
parent | 99831e4677a7e2e051af636221694d60ba31fcdb (diff) |
Use newly introduced const-goodness of TinyPtrVector.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152108 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/ASTContext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/ASTContext.h b/include/clang/AST/ASTContext.h index 62143e0199..695db67f24 100644 --- a/include/clang/AST/ASTContext.h +++ b/include/clang/AST/ASTContext.h @@ -480,7 +480,7 @@ public: const FieldDecl *LastFD) const; // Access to the set of methods overridden by the given C++ method. - typedef CXXMethodVector::iterator overridden_cxx_method_iterator; + typedef CXXMethodVector::const_iterator overridden_cxx_method_iterator; overridden_cxx_method_iterator overridden_methods_begin(const CXXMethodDecl *Method) const; |