From: Benjamin Kramer Date: Sat, 20 Aug 2011 21:50:41 +0000 (+0000) Subject: Fix compile on platforms that don't implicitly include stdarg.h here. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d9f5a709ddbffe35dcc419c9c3fa6a852e833f7a;p=clang Fix compile on platforms that don't implicitly include stdarg.h here. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138214 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp b/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp index 276a1cd4e6..f713bc648b 100644 --- a/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp +++ b/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp @@ -17,7 +17,7 @@ #include "clang/StaticAnalyzer/Core/CheckerManager.h" #include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h" #include "llvm/ADT/StringSwitch.h" -#include "llvm/Support/DataTypes.h" +#include using namespace clang; using namespace ento;