Skip to content

Commit ceda84d

Browse files
committed
More clippy fixes
1 parent 665ffdf commit ceda84d

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

Cargo.toml

+8
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,11 @@ members = [
1010
"tests-build",
1111
"tests-trybuild",
1212
]
13+
14+
default-members = [
15+
"riscv",
16+
"riscv-pac",
17+
"riscv-peripheral",
18+
"riscv-rt",
19+
"riscv-semihosting",
20+
]

riscv-rt/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3737

3838
### Fixed
3939

40-
- `clippy` fixes
40+
- New `clippy` fixes
4141

4242
## [v0.14.0] - 2025-02-18
4343

riscv-rt/src/exceptions.rs

-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ pub static __EXCEPTIONS: [Option<unsafe extern "C" fn(&TrapFrame)>; 16] = [
5757
///
5858
/// This function must be called only from the [`crate::start_trap_rust`] function.
5959
/// Do **NOT** call this function directly.
60-
#[inline]
6160
#[no_mangle]
6261
pub unsafe extern "C" fn _dispatch_exception(trap_frame: &TrapFrame, code: usize) {
6362
extern "C" {

0 commit comments

Comments
 (0)