diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-04-26 03:17:13 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-04-26 03:17:13 +0000 |
commit | 7a3a8148ab21dba3965622b03969bae721d561e2 (patch) | |
tree | 445408eb5952c9179bd71a0a042d7beb8c6a81c1 | |
parent | ad27eeaf03fc834f5e8e8d5b343582fe6b29000d (diff) |
include/clang/AST/StmtIterator.h: std::pair should be provided by <utility>. libcxx needs it.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130183 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/StmtIterator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/AST/StmtIterator.h b/include/clang/AST/StmtIterator.h index 851c001adc..05b50db7de 100644 --- a/include/clang/AST/StmtIterator.h +++ b/include/clang/AST/StmtIterator.h @@ -18,6 +18,7 @@ #include <cassert> #include <cstddef> #include <iterator> +#include <utility> namespace clang { |