Skip to content

Commit fb4813d

Browse files
committed
Remove unused Default implementation for Config
1 parent ba9d943 commit fb4813d

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

src/config.rs

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -47,19 +47,3 @@ pub struct Config {
4747
/// Only considered if `map_framebuffer` is `true`.
4848
pub framebuffer_address: Option<u64>,
4949
}
50-
51-
impl Default for Config {
52-
fn default() -> Self {
53-
Config {
54-
map_physical_memory: false,
55-
map_page_table_recursively: false,
56-
map_framebuffer: true,
57-
physical_memory_offset: None,
58-
recursive_index: None,
59-
kernel_stack_address: None,
60-
kernel_stack_size: None,
61-
boot_info_address: None,
62-
framebuffer_address: None,
63-
}
64-
}
65-
}

0 commit comments

Comments
 (0)