diff options
author | Csaba Dabis <dabis.csaba98@gmail.com> | 2019-08-22 00:36:42 +0000 |
---|---|---|
committer | Csaba Dabis <dabis.csaba98@gmail.com> | 2019-08-22 00:36:42 +0000 |
commit | e4bf456fcef23b7c9ec9968cdf1df36b591755ec (patch) | |
tree | 23fdefed364084c99684048e6fe2e83c25e770b5 /clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp | |
parent | 3dd22585199195d4656154205ab631b8dd406143 (diff) | |
download | bcm5719-llvm-e4bf456fcef23b7c9ec9968cdf1df36b591755ec.tar.gz bcm5719-llvm-e4bf456fcef23b7c9ec9968cdf1df36b591755ec.zip |
[analyzer] CastValueChecker: Rewrite dead header hotfix
llvm-svn: 369607
Diffstat (limited to 'clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp index 990e3c2a9ca..4ec01158e88 100644 --- a/clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp @@ -27,7 +27,7 @@ #include "clang/StaticAnalyzer/Core/CheckerManager.h" #include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h" #include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h" -#include "clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.h" +#include "clang/StaticAnalyzer/Core/PathSensitive/DynamicType.h" #include "clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h" using namespace clang; |