[cfe-commits] r152108 - /cfe/trunk/include/clang/AST/ASTContext.h

Argyrios Kyrtzidis akyrtzi at gmail.com
Mon Mar 5 23:15:07 PST 2012


Author: akirtzidis
Date: Tue Mar  6 01:15:06 2012
New Revision: 152108

URL: http://llvm.org/viewvc/llvm-project?rev=152108&view=rev
Log:
Use newly introduced const-goodness of TinyPtrVector.

Modified:
    cfe/trunk/include/clang/AST/ASTContext.h

Modified: cfe/trunk/include/clang/AST/ASTContext.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ASTContext.h?rev=152108&r1=152107&r2=152108&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/ASTContext.h (original)
+++ cfe/trunk/include/clang/AST/ASTContext.h Tue Mar  6 01:15:06 2012
@@ -480,7 +480,7 @@
                                   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;
 





More information about the cfe-commits mailing list