File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -491,7 +491,7 @@ class SILGenNameAttr : public DeclAttribute {
491491 Name (Name) {}
492492
493493 SILGenNameAttr (StringRef Name, bool Implicit)
494- : SILGenNameAttr(Name, SourceLoc(), SourceRange(), /* Implicit= */ true ) {}
494+ : SILGenNameAttr(Name, SourceLoc(), SourceRange(), Implicit) {}
495495
496496 // / The symbol name.
497497 const StringRef Name;
@@ -509,7 +509,7 @@ class CDeclAttr : public DeclAttribute {
509509 Name (Name) {}
510510
511511 CDeclAttr (StringRef Name, bool Implicit)
512- : CDeclAttr(Name, SourceLoc(), SourceRange(), /* Implicit= */ true ) {}
512+ : CDeclAttr(Name, SourceLoc(), SourceRange(), Implicit) {}
513513
514514 // / The symbol name.
515515 const StringRef Name;
@@ -528,7 +528,7 @@ class SemanticsAttr : public DeclAttribute {
528528 Value (Value) {}
529529
530530 SemanticsAttr (StringRef Value, bool Implicit)
531- : SemanticsAttr(Value, SourceLoc(), SourceRange(), /* Implicit= */ true ) {}
531+ : SemanticsAttr(Value, SourceLoc(), SourceRange(), Implicit) {}
532532
533533 // / The semantics tag value.
534534 const StringRef Value;
You can’t perform that action at this time.
0 commit comments