summaryrefslogtreecommitdiffstats
path: root/clang/lib/AST
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2009-04-27 23:43:36 +0000
committerEli Friedman <eli.friedman@gmail.com>2009-04-27 23:43:36 +0000
commitf66a2e12a4139be529ef72865f842ee75b3b0598 (patch)
treeb29349ccd1c91966df35fb1b4a05801d560a83a1 /clang/lib/AST
parenta90db0acd0233dc6ac92c0a27b8c61f137d94b04 (diff)
downloadbcm5719-llvm-f66a2e12a4139be529ef72865f842ee75b3b0598.tar.gz
bcm5719-llvm-f66a2e12a4139be529ef72865f842ee75b3b0598.zip
A couple more small changes which are probably required for Cygwin
builds to work (PR4088). llvm-svn: 70269
Diffstat (limited to 'clang/lib/AST')
-rw-r--r--clang/lib/AST/DeclBase.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/DeclBase.cpp b/clang/lib/AST/DeclBase.cpp
index 707383af3a8..071fb791013 100644
--- a/clang/lib/AST/DeclBase.cpp
+++ b/clang/lib/AST/DeclBase.cpp
@@ -469,7 +469,7 @@ DeclContext::LoadLexicalDeclsFromExternalStorage(ASTContext &Context) const {
ExternalASTSource *Source = Context.getExternalSource();
assert(hasExternalLexicalStorage() && Source && "No external storage?");
- llvm::SmallVector<unsigned, 64> Decls;
+ llvm::SmallVector<uint32_t, 64> Decls;
if (Source->ReadDeclsLexicallyInContext(const_cast<DeclContext *>(this),
Decls))
return;
OpenPOWER on IntegriCloud