File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ pub mod events;
2
2
mod handlers;
3
3
pub mod metadata;
4
4
pub mod mir_loc;
5
- pub mod runtime;
6
5
mod parse;
6
+ pub mod runtime;
7
7
8
8
pub use handlers:: * ;
9
9
use runtime:: { global_runtime:: RUNTIME , skip:: notify_if_events_were_skipped_before_main} ;
Original file line number Diff line number Diff line change @@ -434,8 +434,8 @@ pub struct SwitchCases {
434
434
}
435
435
436
436
/// A Rust statement, or a C declaration, or a comment
437
- ///
438
- /// `#[allow(clippy::large_enum_variant)]`ed instead of [`Box`]ing the large variant,
437
+ ///
438
+ /// `#[allow(clippy::large_enum_variant)]`ed instead of [`Box`]ing the large variant,
439
439
/// [`Stmt`] (472 bytes), as doing so would cause a lot of code churn and refactoring.
440
440
#[ allow( clippy:: large_enum_variant) ]
441
441
#[ derive( Clone , Debug ) ]
Original file line number Diff line number Diff line change @@ -1176,8 +1176,8 @@ pub enum ExprUse {
1176
1176
pub enum ConvertedDecl {
1177
1177
/// [`ForeignItem`] is large (472 bytes), so [`Box`] it.
1178
1178
ForeignItem ( Box < ForeignItem > ) , // would be 472 bytes
1179
- Item ( Box < Item > ) , // 24 bytes
1180
- Items ( Vec < Box < Item > > ) , // 24 bytes
1179
+ Item ( Box < Item > ) , // 24 bytes
1180
+ Items ( Vec < Box < Item > > ) , // 24 bytes
1181
1181
NoItem ,
1182
1182
}
1183
1183
You can’t perform that action at this time.
0 commit comments