[analyzer] A blind attempt to fix a buildbot after r283092.

The msvc compiler seems to crash compiling the BugReport class.

llvm-svn: 283141
This commit is contained in:
Artem Dergachev 2016-10-03 20:12:12 +00:00
parent eccdee9196
commit 844ba8879e
1 changed files with 1 additions and 1 deletions

View File

@ -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: