diff options
author | Torok Edwin <edwintorok@gmail.com> | 2009-08-24 13:25:12 +0000 |
---|---|---|
committer | Torok Edwin <edwintorok@gmail.com> | 2009-08-24 13:25:12 +0000 |
commit | f42e4a6e089e8413247400fe58ad299193371f9c (patch) | |
tree | f4d487ff2f05b8854814d9d23feee6542d0a04e1 /lib/Frontend/PCHWriterDecl.cpp | |
parent | 1bba242c85038a27865259ef8a50643e19b2079e (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/Frontend/PCHWriterDecl.cpp')
-rw-r--r-- | lib/Frontend/PCHWriterDecl.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Frontend/PCHWriterDecl.cpp b/lib/Frontend/PCHWriterDecl.cpp index c605148e2b..eed888382a 100644 --- a/lib/Frontend/PCHWriterDecl.cpp +++ b/lib/Frontend/PCHWriterDecl.cpp @@ -16,6 +16,8 @@ #include "clang/AST/Expr.h" #include "clang/AST/TypeLoc.h" #include "llvm/Bitcode/BitstreamWriter.h" +#include <cstdio> + using namespace clang; //===----------------------------------------------------------------------===// |