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 {
491
491
Name (Name) {}
492
492
493
493
SILGenNameAttr (StringRef Name, bool Implicit)
494
- : SILGenNameAttr(Name, SourceLoc(), SourceRange(), /* Implicit= */ true ) {}
494
+ : SILGenNameAttr(Name, SourceLoc(), SourceRange(), Implicit) {}
495
495
496
496
// / The symbol name.
497
497
const StringRef Name;
@@ -509,7 +509,7 @@ class CDeclAttr : public DeclAttribute {
509
509
Name (Name) {}
510
510
511
511
CDeclAttr (StringRef Name, bool Implicit)
512
- : CDeclAttr(Name, SourceLoc(), SourceRange(), /* Implicit= */ true ) {}
512
+ : CDeclAttr(Name, SourceLoc(), SourceRange(), Implicit) {}
513
513
514
514
// / The symbol name.
515
515
const StringRef Name;
@@ -528,7 +528,7 @@ class SemanticsAttr : public DeclAttribute {
528
528
Value (Value) {}
529
529
530
530
SemanticsAttr (StringRef Value, bool Implicit)
531
- : SemanticsAttr(Value, SourceLoc(), SourceRange(), /* Implicit= */ true ) {}
531
+ : SemanticsAttr(Value, SourceLoc(), SourceRange(), Implicit) {}
532
532
533
533
// / The semantics tag value.
534
534
const StringRef Value;
You can’t perform that action at this time.
0 commit comments