diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-04-28 17:48:05 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-04-28 17:48:05 +0000 |
commit | 8a31774e1e18ff08a5ce0486bdf1c7a51be7a1e8 (patch) | |
tree | 62ab8a4dc438a5247e71eb0cb91fefd83344d937 | |
parent | a4d8cde6584aa6c1aee241faf671eb4bac93defb (diff) |
Fix additional issues pointed out in PR4088.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70305 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/ExternalASTSource.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/AST/ExternalASTSource.h b/include/clang/AST/ExternalASTSource.h index 930173aa2a..4219bd507a 100644 --- a/include/clang/AST/ExternalASTSource.h +++ b/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. |