summaryrefslogtreecommitdiff
path: root/nrf-softdevice-gen/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'nrf-softdevice-gen/src/main.rs')
-rw-r--r--nrf-softdevice-gen/src/main.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/nrf-softdevice-gen/src/main.rs b/nrf-softdevice-gen/src/main.rs
index 3fa2c27..4caabb0 100644
--- a/nrf-softdevice-gen/src/main.rs
+++ b/nrf-softdevice-gen/src/main.rs
@@ -196,6 +196,13 @@ static HEADER: &str = r#"
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#![allow(
+ clippy::fn_to_numeric_cast,
+ clippy::missing_safety_doc,
+ clippy::redundant_static_lifetimes,
+ clippy::useless_transmute
+)]
+
pub type c_schar = i8;
pub type c_uchar = u8;
pub type c_char = u8;