diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-08-20 21:50:41 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-08-20 21:50:41 +0000 |
commit | d9f5a709ddbffe35dcc419c9c3fa6a852e833f7a (patch) | |
tree | 4b8a315d777206f5754adae56b4aef7d645ce229 | |
parent | 2f9a66debc058359653cf4d13a8c58cc34cd36bd (diff) |
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
-rw-r--r-- | lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 <cstdarg> using namespace clang; using namespace ento; |