Skip to content

Commit 18ae468

Browse files
DougGregorDave Abrahams
authored andcommitted
[GSB] Fix compile error with libstdc++
1 parent b23bee3 commit 18ae468

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/AST/GenericSignatureBuilder.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3502,7 +3502,8 @@ void GenericSignatureBuilder::checkSameTypeConstraints(
35023502
// diagnostics within each component.
35033503
unsigned numComponents = equivClass->derivedSameTypeComponents.size();
35043504
std::vector<std::vector<Constraint<PotentialArchetype *>>>
3505-
intracomponentEdges(numComponents, {});
3505+
intracomponentEdges(numComponents,
3506+
std::vector<Constraint<PotentialArchetype *>>());
35063507

35073508
// Intercomponent edges are stored as one big list, which tracks the
35083509
// source/target components.

0 commit comments

Comments
 (0)