summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtem Dergachev <artem.dergachev@gmail.com>2016-10-03 20:12:12 +0000
committerArtem Dergachev <artem.dergachev@gmail.com>2016-10-03 20:12:12 +0000
commit844ba8879e77826c0a850338d9b909719b246e36 (patch)
tree213e7ae94f3adf2b1a7153b8751be54d9343f3a7
parenteccdee91960e28dd305d8daa5fc874a57ded65e9 (diff)
downloadbcm5719-llvm-844ba8879e77826c0a850338d9b909719b246e36.tar.gz
bcm5719-llvm-844ba8879e77826c0a850338d9b909719b246e36.zip
[analyzer] A blind attempt to fix a buildbot after r283092.
The msvc compiler seems to crash compiling the BugReport class. llvm-svn: 283141
-rw-r--r--clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h b/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
index 6283305a5d4..8ace59c2fe5 100644
--- a/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
+++ b/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
@@ -66,7 +66,7 @@ public:
typedef SmallVector<std::unique_ptr<BugReporterVisitor>, 8> VisitorList;
typedef VisitorList::iterator visitor_iterator;
typedef SmallVector<StringRef, 2> ExtraTextList;
- typedef SmallVector<llvm::IntrusiveRefCntPtr<PathDiagnosticNotePiece>, 4>
+ typedef std::vector<llvm::IntrusiveRefCntPtr<PathDiagnosticNotePiece>>
NoteList;
protected:
OpenPOWER on IntegriCloud