mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
The module should not be pub
This commit is contained in:
parent
f957f05b66
commit
ad7b5a90c4
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ pub fn app(app: &App, analysis: &Analysis, extra: &Extra) -> TokenStream2 {
|
||||||
|
|
||||||
let main = util::suffixed("main");
|
let main = util::suffixed("main");
|
||||||
mains.push(quote!(
|
mains.push(quote!(
|
||||||
pub mod rtic_ext {
|
mod rtic_ext {
|
||||||
use super::*;
|
use super::*;
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
unsafe extern "C" fn #main() -> ! {
|
unsafe extern "C" fn #main() -> ! {
|
||||||
|
|
Loading…
Reference in a new issue