Skip to content

Commit 76ea88f

Browse files
committed
Remove broken #[allow] on include!() from #34
Having a `#[allow]` on top of `include!()` only applies to the first statement in the included file, hence has very little effect. Furthermore `bindgen 0.70.1` now emits the necessary `#[allow]`s already to appease `clippy`, making this redundant even if it was correctly applying to the surrounding module with `#![allow]`.
1 parent ad506c1 commit 76ea88f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

runtime/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ pub use crate::task::ISPCTaskFn;
4545
#[macro_export]
4646
macro_rules! ispc_module {
4747
($lib:ident) => {
48-
#[allow(clippy::all)]
4948
include!(concat!(env!("ISPC_OUT_DIR"), "/", stringify!($lib), ".rs"));
5049
};
5150
}

0 commit comments

Comments
 (0)