Skip to content

Commit

Permalink
lint: Allow improper_ctypes_definitions (#364)
Browse files Browse the repository at this point in the history
rust-lang/rust#72700 caused the existing
`allow(improper_ctypes)` guard to stop working, we now need
`allow(improper_ctypes_definitions)` instead.

We keep the old one to avoid any issues with older nightlies.

Signed-off-by: Joe Richey <[email protected]>
  • Loading branch information
josephlr authored Jul 8, 2020
1 parent 7b996ca commit f3846bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// We use `u128` in a whole bunch of places which we currently agree with the
// compiler on ABIs and such, so we should be "good enough" for now and changes
// to the `u128` ABI will be reflected here.
#![allow(improper_ctypes)]
#![allow(improper_ctypes, improper_ctypes_definitions)]

// We disable #[no_mangle] for tests so that we can verify the test results
// against the native compiler-rt implementations of the builtins.
Expand Down

0 comments on commit f3846bc

Please sign in to comment.