Skip to content

Commit cd83145

Browse files
authored
Merge pull request #14 from rcore-os/main
fix warning: the feature has been stable since 1.69.0-nightly and no…
2 parents 6363652 + 9a4e98b commit cd83145

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

.github/workflows/workflow.yml

+1
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ jobs:
3333
cargo make --ch 5
3434
cargo make --ch 6
3535
cargo make --ch 7
36+
cargo make --ch 8

ch4/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![no_std]
22
#![no_main]
33
#![feature(naked_functions, asm_const)]
4-
#![feature(default_alloc_error_handler)]
4+
//#![feature(default_alloc_error_handler)]
55
#![deny(warnings)]
66

77
mod process;

ch5/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![no_std]
22
#![no_main]
33
#![feature(naked_functions, asm_const)]
4-
#![feature(default_alloc_error_handler)]
4+
//#![feature(default_alloc_error_handler)]
55
#![deny(warnings)]
66

77
mod process;

ch6/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![no_std]
22
#![no_main]
33
#![feature(naked_functions, asm_const)]
4-
#![feature(default_alloc_error_handler)]
4+
//#![feature(default_alloc_error_handler)]
55
#![deny(warnings)]
66

77
mod fs;

ch7/src/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#![no_std]
22
#![no_main]
33
#![feature(naked_functions, asm_const)]
4-
#![feature(default_alloc_error_handler)]
5-
// #![deny(warnings)]
4+
//#![feature(default_alloc_error_handler)]
5+
#![deny(warnings)]
66

77
mod fs;
88
mod process;

ch8/src/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#![no_std]
22
#![no_main]
33
#![feature(naked_functions, asm_const)]
4-
#![feature(default_alloc_error_handler)]
5-
// #![deny(warnings)]
4+
//#![feature(default_alloc_error_handler)]
5+
#![deny(warnings)]
66

77
mod fs;
88
mod process;

0 commit comments

Comments
 (0)