Skip to content

Commit 3c97041

Browse files
authored
[Gardening][AST] Eliminate 'numParameterLists'. (#22824)
Leftover from bfc4121
1 parent 7ec5408 commit 3c97041

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/swift/AST/Decl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5717,12 +5717,12 @@ class AccessorDecl final : public FuncDecl {
57175717
AccessorKind accessorKind, AbstractStorageDecl *storage,
57185718
SourceLoc staticLoc, StaticSpellingKind staticSpelling,
57195719
bool throws, SourceLoc throwsLoc,
5720-
unsigned numParameterLists, GenericParamList *genericParams,
5720+
bool hasImplicitSelfDecl, GenericParamList *genericParams,
57215721
DeclContext *parent)
57225722
: FuncDecl(DeclKind::Accessor,
57235723
staticLoc, staticSpelling, /*func loc*/ declLoc,
57245724
/*name*/ Identifier(), /*name loc*/ declLoc,
5725-
throws, throwsLoc, numParameterLists, genericParams, parent),
5725+
throws, throwsLoc, hasImplicitSelfDecl, genericParams, parent),
57265726
AccessorKeywordLoc(accessorKeywordLoc),
57275727
Storage(storage) {
57285728
Bits.AccessorDecl.AccessorKind = unsigned(accessorKind);

0 commit comments

Comments
 (0)