From 04c39ee825525128cb0b7a85bf68a753fa239ea1 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 20 Jul 2020 07:21:01 -0700 Subject: [PATCH] Remove nightly lint workaround The source of these warnings was fixed in rust-lang/rust#74448, yay! --- crates/c-api/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/c-api/src/lib.rs b/crates/c-api/src/lib.rs index 5dc46d8fdb46..9f716fb6eb51 100644 --- a/crates/c-api/src/lib.rs +++ b/crates/c-api/src/lib.rs @@ -2,8 +2,6 @@ //! [Wasm C API](https://github.com/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