commit | 0fbc71c858f622540711ca91a6cc58bc96b2935f | [log] [tgz] |
---|---|---|
author | Edwin Török <edwintorok@gmail.com> | Mon Aug 24 13:25:12 2009 +0000 |
committer | Edwin Török <edwintorok@gmail.com> | Mon Aug 24 13:25:12 2009 +0000 |
tree | f4d487ff2f05b8854814d9d23feee6542d0a04e1 | |
parent | 759cc532b468378e598dba571dad378033c7095d [diff] [blame] |
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
diff --git a/lib/Sema/SemaOverload.cpp b/lib/Sema/SemaOverload.cpp index c445144..850b5e7 100644 --- a/lib/Sema/SemaOverload.cpp +++ b/lib/Sema/SemaOverload.cpp
@@ -23,6 +23,7 @@ #include "llvm/ADT/STLExtras.h" #include "llvm/Support/Compiler.h" #include <algorithm> +#include <cstdio> namespace clang {