File tree Expand file tree Collapse file tree 2 files changed +108
-57
lines changed Expand file tree Collapse file tree 2 files changed +108
-57
lines changed Original file line number Diff line number Diff line change @@ -463,9 +463,9 @@ pub(super) fn definition(
463
463
} ;
464
464
465
465
let label = match ( value, layout_info) {
466
- ( Some ( value) , Some ( layout_info) ) => format ! ( "{label} = {value}{layout_info }" ) ,
466
+ ( Some ( value) , Some ( layout_info) ) => format ! ( "{layout_info} \n { label} = {value}" ) ,
467
467
( Some ( value) , None ) => format ! ( "{label} = {value}" ) ,
468
- ( None , Some ( layout_info) ) => format ! ( "{label}{layout_info }" ) ,
468
+ ( None , Some ( layout_info) ) => format ! ( "{layout_info} \n {label }" ) ,
469
469
( None , None ) => label,
470
470
} ;
471
471
@@ -617,8 +617,6 @@ fn render_memory_layout(
617
617
offset : impl FnOnce ( & Layout ) -> Option < u64 > ,
618
618
tag : impl FnOnce ( & Layout ) -> Option < usize > ,
619
619
) -> Option < String > {
620
- // field
621
-
622
620
let config = config?;
623
621
let layout = layout ( ) . ok ( ) ?;
624
622
You can’t perform that action at this time.
0 commit comments