Skip to content

Commit 02b2312

Browse files
committed
Fix accidental reintroduction of jemalloc
1 parent 3728966 commit 02b2312

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Use the system allocator instead of bundling
22
// jemalloc into the binary.
3-
//use std::alloc::System;
4-
//
5-
//#[global_allocator]
6-
//static A: System = System;k
3+
use std::alloc::System;
4+
5+
#[global_allocator]
6+
static A: System = System;
77

88
fn main() {
99
println!("Hello, world!");

0 commit comments

Comments
 (0)