[cfe-commits] r70305 - /cfe/trunk/include/clang/AST/ExternalASTSource.h

Eli Friedman eli.friedman at gmail.com
Tue Apr 28 10:48:06 PDT 2009


Author: efriedma
Date: Tue Apr 28 12:48:05 2009
New Revision: 70305

URL: http://llvm.org/viewvc/llvm-project?rev=70305&view=rev
Log:
Fix additional issues pointed out in PR4088.


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

Modified: cfe/trunk/include/clang/AST/ExternalASTSource.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ExternalASTSource.h?rev=70305&r1=70304&r2=70305&view=diff

==============================================================================
--- cfe/trunk/include/clang/AST/ExternalASTSource.h (original)
+++ cfe/trunk/include/clang/AST/ExternalASTSource.h Tue Apr 28 12:48:05 2009
@@ -59,11 +59,11 @@
 
   /// \brief Resolve a type ID into a type, potentially building a new
   /// type.
-  virtual QualType GetType(unsigned ID) = 0;
+  virtual QualType GetType(uint32_t ID) = 0;
 
   /// \brief Resolve a declaration ID into a declaration, potentially
   /// building a new declaration.
-  virtual Decl *GetDecl(unsigned ID) = 0;
+  virtual Decl *GetDecl(uint32_t ID) = 0;
 
   /// \brief Resolve the offset of a statement in the decl stream into a
   /// statement.





More information about the cfe-commits mailing list