aboutsummaryrefslogtreecommitdiff
path: root/macros/src/codegen/module.rs
diff options
context:
space:
mode:
authorGravatar Emil Fresk <emil.fresk@gmail.com> 2023-01-19 13:56:59 +0100
committerGravatar Henrik Tjäder <henrik@tjaders.com> 2023-03-01 00:33:30 +0100
commitb8b881f446a226d6f3c4a7db7c9174590b47dbf6 (patch)
treecf74ac7f716c0206df9c5dc4c7a2c1a5893aaddc /macros/src/codegen/module.rs
parent4601782466c518d313ba79d9437bf7a3f8dbbf76 (diff)
downloadrtic-b8b881f446a226d6f3c4a7db7c9174590b47dbf6.tar.gz
rtic-b8b881f446a226d6f3c4a7db7c9174590b47dbf6.tar.zst
rtic-b8b881f446a226d6f3c4a7db7c9174590b47dbf6.zip
Fix so deny(missing_docs) work
Diffstat (limited to 'macros/src/codegen/module.rs')
-rw-r--r--macros/src/codegen/module.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/macros/src/codegen/module.rs b/macros/src/codegen/module.rs
index f4c188a4..4725b9a9 100644
--- a/macros/src/codegen/module.rs
+++ b/macros/src/codegen/module.rs
@@ -114,6 +114,7 @@ pub fn codegen(ctxt: Context, app: &App, analysis: &Analysis) -> TokenStream2 {
#(#cfgs)*
impl<'a> #internal_context_name<'a> {
#[inline(always)]
+ #[allow(missing_docs)]
pub unsafe fn new(#core) -> Self {
#internal_context_name {
__rtic_internal_p: ::core::marker::PhantomData,