Merge pull request #246 from lulf/remove-default-rcc

Remove default rcc impl
This commit is contained in:
Dario Nieuwenhuis 2021-06-14 20:30:02 +02:00 committed by GitHub
commit ceb5d92da3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,11 +60,6 @@ cfg_if::cfg_if! {
} else if #[cfg(rcc_wb55)] { } else if #[cfg(rcc_wb55)] {
mod wb55; mod wb55;
pub use wb55::*; pub use wb55::*;
} else {
#[derive(Default)]
pub struct Config {}
pub unsafe fn init(_config: Config) {
}
} }
} }