diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-03-05 00:37:49 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-03-05 00:37:49 +0000 |
commit | 85dfd7443964787521c97fff425fcfbc165f14e9 (patch) | |
tree | d14bae37806c949e877bd9c07f73c711a79a216f | |
parent | 8d9af4cb482994b260ee9b3a0145ca15feba15f2 (diff) | |
download | bcm5719-llvm-85dfd7443964787521c97fff425fcfbc165f14e9.tar.gz bcm5719-llvm-85dfd7443964787521c97fff425fcfbc165f14e9.zip |
Use LLVM type header rather than using stdint.h directly.
llvm-svn: 66111
-rw-r--r-- | clang/include/clang/AST/StmtIterator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/AST/StmtIterator.h b/clang/include/clang/AST/StmtIterator.h index 360ec5f78bf..35bd5ada025 100644 --- a/clang/include/clang/AST/StmtIterator.h +++ b/clang/include/clang/AST/StmtIterator.h @@ -15,8 +15,8 @@ #define LLVM_CLANG_AST_STMT_ITR_H #include "llvm/ADT/iterator.h" +#include "llvm/Support/DataTypes.h" #include <cassert> -#include <stdint.h> namespace clang { |