We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
format_args!
format!
1 parent 3d962a4 commit 66dbf08Copy full SHA for 66dbf08
src/allocator/dedicated_block_allocator/mod.rs
@@ -103,6 +103,7 @@ impl SubAllocator for DedicatedBlockAllocator {
103
let backtrace_info;
104
#[cfg(feature = "std")]
105
{
106
+ // TODO: Allocation could be avoided here if https://github.com/rust-lang/rust/pull/139135 is merged and stabilized.
107
backtrace_info = format!(
108
",
109
backtrace: {}",
src/allocator/free_list_allocator/mod.rs
@@ -380,6 +380,7 @@ impl SubAllocator for FreeListAllocator {
380
381
382
383
384
385
386
0 commit comments