[cfe-commits] r130183 - /cfe/trunk/include/clang/AST/StmtIterator.h

NAKAMURA Takumi geek4civic at gmail.com
Mon Apr 25 20:17:13 PDT 2011


Author: chapuni
Date: Mon Apr 25 22:17:13 2011
New Revision: 130183

URL: http://llvm.org/viewvc/llvm-project?rev=130183&view=rev
Log:
include/clang/AST/StmtIterator.h: std::pair should be provided by <utility>. libcxx needs it.

Modified:
    cfe/trunk/include/clang/AST/StmtIterator.h

Modified: cfe/trunk/include/clang/AST/StmtIterator.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/StmtIterator.h?rev=130183&r1=130182&r2=130183&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/StmtIterator.h (original)
+++ cfe/trunk/include/clang/AST/StmtIterator.h Mon Apr 25 22:17:13 2011
@@ -18,6 +18,7 @@
 #include <cassert>
 #include <cstddef>
 #include <iterator>
+#include <utility>
 
 namespace clang {
 





More information about the cfe-commits mailing list