Skip to content

Commit 1434128

Browse files
committed
Parse: Fix unused variable warning.
1 parent 3914b35 commit 1434128

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Parse/ParseDecl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ bool Parser::parseSpecializeAttributeArguments(
731731
if (Tok.is(tok::kw_where)) {
732732
SourceLoc whereLoc, endLoc;
733733
SmallVector<RequirementRepr, 4> requirements;
734-
auto status = parseGenericWhereClause(whereLoc, endLoc, requirements,
734+
parseGenericWhereClause(whereLoc, endLoc, requirements,
735735
/* AllowLayoutConstraints */ !isPublic);
736736
TrailingWhereClause =
737737
TrailingWhereClause::create(Context, whereLoc, endLoc, requirements);

0 commit comments

Comments
 (0)