mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-02 15:56:09 +03:00
re-add spaces before static kind
This commit is contained in:
+2
-2
@@ -528,8 +528,8 @@ pub fn dump_allocs(&self, mut allocs: Vec<AllocId>) {
|
||||
}
|
||||
|
||||
let immutable = match alloc.static_kind {
|
||||
StaticKind::Mutable => "(static mut)",
|
||||
StaticKind::Immutable => "(immutable)",
|
||||
StaticKind::Mutable => " (static mut)",
|
||||
StaticKind::Immutable => " (immutable)",
|
||||
StaticKind::NotStatic => "",
|
||||
};
|
||||
trace!("{}({} bytes){}", msg, alloc.bytes.len(), immutable);
|
||||
|
||||
Reference in New Issue
Block a user