]> granicus.if.org Git - clang/commitdiff
Fix additional issues pointed out in PR4088.
authorEli Friedman <eli.friedman@gmail.com>
Tue, 28 Apr 2009 17:48:05 +0000 (17:48 +0000)
committerEli Friedman <eli.friedman@gmail.com>
Tue, 28 Apr 2009 17:48:05 +0000 (17:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70305 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/ExternalASTSource.h

index 930173aa2a4dec334dabb00a77f9c3b2ee80fae7..4219bd507a900ec94c4d609b71073e1926ab7f62 100644 (file)
@@ -59,11 +59,11 @@ public:
 
   /// \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.