From 9f1d66419d39b9f5e5109d107d503c2ce4202552 Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Tue, 28 Apr 2009 17:48:05 +0000 Subject: [PATCH] Fix additional issues pointed out in PR4088. llvm-svn: 70305 --- clang/include/clang/AST/ExternalASTSource.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/include/clang/AST/ExternalASTSource.h b/clang/include/clang/AST/ExternalASTSource.h index 930173aa2a4d..4219bd507a90 100644 --- a/clang/include/clang/AST/ExternalASTSource.h +++ b/clang/include/clang/AST/ExternalASTSource.h @@ -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.