From 00f1f11ca5c1603117b22e6f890d7485302a3127 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Fri, 13 Jan 2023 10:28:22 +0100 Subject: [PATCH] Deny unused_qualifications --- src/lib.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index d12e991f..93f05ff5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -88,12 +88,7 @@ an optimized set of tools for computer graphics and physics. Those features incl future_incompatible, missing_copy_implementations )] -#![cfg_attr(feature = "rkyv-serialize-no-std", allow(unused_results))] // TODO: deny this once bytecheck stops generating warnings. -#![cfg_attr( - not(feature = "rkyv-serialize-no-std"), - deny(unused_results), - deny(unused_qualifications) -)] // TODO: deny this globally +#![cfg_attr(not(feature = "rkyv-serialize-no-std"), deny(unused_results))] // TODO: deny this globally once bytecheck stops generating unused results. #![doc( html_favicon_url = "https://nalgebra.org/img/favicon.ico", html_root_url = "https://docs.rs/nalgebra/0.25.0"