@@ -134,12 +134,8 @@ pub struct BuiltinMissingDebugImpl<'a> {
134
134
135
135
// Needed for def_path_str
136
136
impl < ' a > DecorateLint < ' a , ( ) > for BuiltinMissingDebugImpl < ' _ > {
137
- fn decorate_lint < ' b > (
138
- self ,
139
- diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ,
140
- ) -> & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > {
137
+ fn decorate_lint < ' b > ( self , diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ) {
141
138
diag. set_arg ( "debug" , self . tcx . def_path_str ( self . def_id ) ) ;
142
- diag
143
139
}
144
140
145
141
fn msg ( & self ) -> DiagnosticMessage {
@@ -243,17 +239,13 @@ pub struct BuiltinUngatedAsyncFnTrackCaller<'a> {
243
239
}
244
240
245
241
impl < ' a > DecorateLint < ' a , ( ) > for BuiltinUngatedAsyncFnTrackCaller < ' _ > {
246
- fn decorate_lint < ' b > (
247
- self ,
248
- diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ,
249
- ) -> & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > {
242
+ fn decorate_lint < ' b > ( self , diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ) {
250
243
diag. span_label ( self . label , fluent:: lint_label) ;
251
244
rustc_session:: parse:: add_feature_diagnostics (
252
245
diag,
253
246
self . parse_sess ,
254
247
sym:: async_fn_track_caller,
255
248
) ;
256
- diag
257
249
}
258
250
259
251
fn msg ( & self ) -> DiagnosticMessage {
@@ -433,10 +425,7 @@ pub struct BuiltinUnpermittedTypeInit<'a> {
433
425
}
434
426
435
427
impl < ' a > DecorateLint < ' a , ( ) > for BuiltinUnpermittedTypeInit < ' _ > {
436
- fn decorate_lint < ' b > (
437
- self ,
438
- diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ,
439
- ) -> & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > {
428
+ fn decorate_lint < ' b > ( self , diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ) {
440
429
diag. set_arg ( "ty" , self . ty ) ;
441
430
diag. span_label ( self . label , fluent:: lint_builtin_unpermitted_type_init_label) ;
442
431
if let InhabitedPredicate :: True = self . ty . inhabited_predicate ( self . tcx ) {
@@ -447,7 +436,6 @@ impl<'a> DecorateLint<'a, ()> for BuiltinUnpermittedTypeInit<'_> {
447
436
) ;
448
437
}
449
438
self . sub . add_to_diagnostic ( diag) ;
450
- diag
451
439
}
452
440
453
441
fn msg ( & self ) -> rustc_errors:: DiagnosticMessage {
@@ -1159,10 +1147,7 @@ pub struct NonFmtPanicUnused {
1159
1147
1160
1148
// Used because of two suggestions based on one Option<Span>
1161
1149
impl < ' a > DecorateLint < ' a , ( ) > for NonFmtPanicUnused {
1162
- fn decorate_lint < ' b > (
1163
- self ,
1164
- diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ,
1165
- ) -> & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > {
1150
+ fn decorate_lint < ' b > ( self , diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ) {
1166
1151
diag. set_arg ( "count" , self . count ) ;
1167
1152
diag. note ( fluent:: lint_note) ;
1168
1153
if let Some ( span) = self . suggestion {
@@ -1179,7 +1164,6 @@ impl<'a> DecorateLint<'a, ()> for NonFmtPanicUnused {
1179
1164
Applicability :: MachineApplicable ,
1180
1165
) ;
1181
1166
}
1182
- diag
1183
1167
}
1184
1168
1185
1169
fn msg ( & self ) -> rustc_errors:: DiagnosticMessage {
@@ -1358,12 +1342,9 @@ pub struct DropTraitConstraintsDiag<'a> {
1358
1342
1359
1343
// Needed for def_path_str
1360
1344
impl < ' a > DecorateLint < ' a , ( ) > for DropTraitConstraintsDiag < ' _ > {
1361
- fn decorate_lint < ' b > (
1362
- self ,
1363
- diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ,
1364
- ) -> & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > {
1345
+ fn decorate_lint < ' b > ( self , diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ) {
1365
1346
diag. set_arg ( "predicate" , self . predicate ) ;
1366
- diag. set_arg ( "needs_drop" , self . tcx . def_path_str ( self . def_id ) )
1347
+ diag. set_arg ( "needs_drop" , self . tcx . def_path_str ( self . def_id ) ) ;
1367
1348
}
1368
1349
1369
1350
fn msg ( & self ) -> rustc_errors:: DiagnosticMessage {
@@ -1378,11 +1359,8 @@ pub struct DropGlue<'a> {
1378
1359
1379
1360
// Needed for def_path_str
1380
1361
impl < ' a > DecorateLint < ' a , ( ) > for DropGlue < ' _ > {
1381
- fn decorate_lint < ' b > (
1382
- self ,
1383
- diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ,
1384
- ) -> & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > {
1385
- diag. set_arg ( "needs_drop" , self . tcx . def_path_str ( self . def_id ) )
1362
+ fn decorate_lint < ' b > ( self , diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ) {
1363
+ diag. set_arg ( "needs_drop" , self . tcx . def_path_str ( self . def_id ) ) ;
1386
1364
}
1387
1365
1388
1366
fn msg ( & self ) -> rustc_errors:: DiagnosticMessage {
@@ -1655,10 +1633,7 @@ pub struct ImproperCTypes<'a> {
1655
1633
1656
1634
// Used because of the complexity of Option<DiagnosticMessage>, DiagnosticMessage, and Option<Span>
1657
1635
impl < ' a > DecorateLint < ' a , ( ) > for ImproperCTypes < ' _ > {
1658
- fn decorate_lint < ' b > (
1659
- self ,
1660
- diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ,
1661
- ) -> & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > {
1636
+ fn decorate_lint < ' b > ( self , diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ) {
1662
1637
diag. set_arg ( "ty" , self . ty ) ;
1663
1638
diag. set_arg ( "desc" , self . desc ) ;
1664
1639
diag. span_label ( self . label , fluent:: lint_label) ;
@@ -1669,7 +1644,6 @@ impl<'a> DecorateLint<'a, ()> for ImproperCTypes<'_> {
1669
1644
if let Some ( note) = self . span_note {
1670
1645
diag. span_note ( note, fluent:: lint_note) ;
1671
1646
}
1672
- diag
1673
1647
}
1674
1648
1675
1649
fn msg ( & self ) -> rustc_errors:: DiagnosticMessage {
@@ -1802,10 +1776,7 @@ pub enum UnusedDefSuggestion {
1802
1776
1803
1777
// Needed because of def_path_str
1804
1778
impl < ' a > DecorateLint < ' a , ( ) > for UnusedDef < ' _ , ' _ > {
1805
- fn decorate_lint < ' b > (
1806
- self ,
1807
- diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ,
1808
- ) -> & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > {
1779
+ fn decorate_lint < ' b > ( self , diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ) {
1809
1780
diag. set_arg ( "pre" , self . pre ) ;
1810
1781
diag. set_arg ( "post" , self . post ) ;
1811
1782
diag. set_arg ( "def" , self . cx . tcx . def_path_str ( self . def_id ) ) ;
@@ -1816,7 +1787,6 @@ impl<'a> DecorateLint<'a, ()> for UnusedDef<'_, '_> {
1816
1787
if let Some ( sugg) = self . suggestion {
1817
1788
diag. subdiagnostic ( sugg) ;
1818
1789
}
1819
- diag
1820
1790
}
1821
1791
1822
1792
fn msg ( & self ) -> rustc_errors:: DiagnosticMessage {
@@ -1889,15 +1859,11 @@ pub struct AsyncFnInTraitDiag {
1889
1859
}
1890
1860
1891
1861
impl < ' a > DecorateLint < ' a , ( ) > for AsyncFnInTraitDiag {
1892
- fn decorate_lint < ' b > (
1893
- self ,
1894
- diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ,
1895
- ) -> & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > {
1862
+ fn decorate_lint < ' b > ( self , diag : & ' b mut rustc_errors:: DiagnosticBuilder < ' a , ( ) > ) {
1896
1863
diag. note ( fluent:: lint_note) ;
1897
1864
if let Some ( sugg) = self . sugg {
1898
1865
diag. multipart_suggestion ( fluent:: lint_suggestion, sugg, Applicability :: MaybeIncorrect ) ;
1899
1866
}
1900
- diag
1901
1867
}
1902
1868
1903
1869
fn msg ( & self ) -> rustc_errors:: DiagnosticMessage {
0 commit comments