Skip to content

Commit

Permalink
Allow improper_ctypes_definitions in C API
Browse files Browse the repository at this point in the history
This was enabled in rust-lang/rust#72700 but it looks like it's still
too noisy for it to be useful to us.
  • Loading branch information
alexcrichton authored and bnjbvr committed Jul 16, 2020
1 parent a9455a8 commit 41e1300
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/c-api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
//! [Wasm C API](https:/WebAssembly/wasm-c-api).

#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
#![allow(unknown_lints)]
#![allow(improper_ctypes_definitions)]

// TODO complete the C API

Expand Down

0 comments on commit 41e1300

Please sign in to comment.