Skip to content

Commit 8733b2a

Browse files
authored
Add Default to std::alloc::System
1 parent fbd34ef commit 8733b2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/alloc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ pub use alloc_crate::alloc::*;
130130
/// program opts in to using jemalloc as the global allocator, `System` will
131131
/// still allocate memory using `malloc` and `HeapAlloc`.
132132
#[stable(feature = "alloc_system_type", since = "1.28.0")]
133-
#[derive(Debug, Copy, Clone)]
133+
#[derive(Debug, Default, Copy, Clone)]
134134
pub struct System;
135135

136136
// The Alloc impl just forwards to the GlobalAlloc impl, which is in `std::sys::*::alloc`.

0 commit comments

Comments
 (0)