forked from OSchip/llvm-project
[C-index] Fix test when using Debug target & MSVC STL
Avoids a deadlock in "clang/test/Index/crash-recovery-modules.m" when building with the MSVC STL & _ITERATOR_DEBUG_LEVEL == 2 (meaning a DEBUG build) Differential Revision: https://reviews.llvm.org/D69959
This commit is contained in:
parent
b117ec8be0
commit
f55cd39f19
|
@ -366,7 +366,7 @@ public:
|
|||
std::string ARCMTMigrateReportOut;
|
||||
|
||||
/// The input files and their types.
|
||||
std::vector<FrontendInputFile> Inputs;
|
||||
SmallVector<FrontendInputFile, 0> Inputs;
|
||||
|
||||
/// When the input is a module map, the original module map file from which
|
||||
/// that map was inferred, if any (for umbrella modules).
|
||||
|
|
Loading…
Reference in New Issue