aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/ParseAST.cpp
diff options
context:
space:
mode:
authorTorok Edwin <edwintorok@gmail.com>2009-08-24 13:25:12 +0000
committerTorok Edwin <edwintorok@gmail.com>2009-08-24 13:25:12 +0000
commitf42e4a6e089e8413247400fe58ad299193371f9c (patch)
treef4d487ff2f05b8854814d9d23feee6542d0a04e1 /lib/Sema/ParseAST.cpp
parent1bba242c85038a27865259ef8a50643e19b2079e (diff)
Fix build of clang with gcc-4.4: #include <cstdio> was missing.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79916 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/ParseAST.cpp')
-rw-r--r--lib/Sema/ParseAST.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Sema/ParseAST.cpp b/lib/Sema/ParseAST.cpp
index a731401dcd..b6e52570ea 100644
--- a/lib/Sema/ParseAST.cpp
+++ b/lib/Sema/ParseAST.cpp
@@ -19,6 +19,8 @@
#include "clang/AST/ExternalASTSource.h"
#include "clang/AST/Stmt.h"
#include "clang/Parse/Parser.h"
+#include <cstdio>
+
using namespace clang;
//===----------------------------------------------------------------------===//