We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37845db commit 1c8f03bCopy full SHA for 1c8f03b
src/mk_graph/index.rs
@@ -140,7 +140,7 @@ impl AllocEntry {
140
let (kind, description) = match info.global_alloc() {
141
GlobalAlloc::Memory(alloc) => {
142
let bytes = &alloc.bytes;
143
- let is_str = ty_name.contains("str") || ty_name.contains("&str");
+ let is_str = ty_name.contains("str");
144
145
// Convert Option<u8> bytes to actual bytes for display
146
let concrete_bytes: Vec<u8> = bytes.iter().filter_map(|&b| b).collect();
0 commit comments