r353599 - [StaticAnalyzer] Add missing include to SMTAPI.h. [NFC]
David L. Jones via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 8 18:41:55 PST 2019
Author: dlj
Date: Fri Feb 8 18:41:55 2019
New Revision: 353599
URL: http://llvm.org/viewvc/llvm-project?rev=353599&view=rev
Log:
[StaticAnalyzer] Add missing include to SMTAPI.h. [NFC]
This include is needed for types within SMTAPI.h. (It's very possible that
compilation would succeed without it, but that's only by chance.)
Modified:
cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/SMTAPI.h
Modified: cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/SMTAPI.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/SMTAPI.h?rev=353599&r1=353598&r2=353599&view=diff
==============================================================================
--- cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/SMTAPI.h (original)
+++ cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/SMTAPI.h Fri Feb 8 18:41:55 2019
@@ -16,6 +16,7 @@
#include "clang/Basic/TargetInfo.h"
#include "llvm/ADT/APSInt.h"
+#include "llvm/ADT/FoldingSet.h"
namespace clang {
namespace ento {
More information about the cfe-commits
mailing list