mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[GSB] Fix compile error with libstdc++
This commit is contained in:
@@ -3502,7 +3502,8 @@ void GenericSignatureBuilder::checkSameTypeConstraints(
|
||||
// diagnostics within each component.
|
||||
unsigned numComponents = equivClass->derivedSameTypeComponents.size();
|
||||
std::vector<std::vector<Constraint<PotentialArchetype *>>>
|
||||
intracomponentEdges(numComponents, {});
|
||||
intracomponentEdges(numComponents,
|
||||
std::vector<Constraint<PotentialArchetype *>>());
|
||||
|
||||
// Intercomponent edges are stored as one big list, which tracks the
|
||||
// source/target components.
|
||||
|
||||
Reference in New Issue
Block a user