Fix formatting

This commit is contained in:
Olivier Goffart
2026-07-28 16:39:35 +00:00
parent d786b10230
commit 93045a5b51
5 changed files with 0 additions and 5 deletions

View File

@@ -70,7 +70,6 @@
//! 4. Pass a clone of the `AndroidApp` that your application receives to Winit when building your
//! event loop (as shown above).
#![cfg(target_os = "android")]
#![warn(clippy::exhaustive_enums)]
mod event_loop;

View File

@@ -64,7 +64,6 @@
//! }
//! ```
#![cfg(target_vendor = "apple")] // TODO: Remove once `objc2` allows compiling on all platforms
#![warn(clippy::exhaustive_enums)]
#[macro_use]

View File

@@ -99,7 +99,6 @@
//!
//! [app-delegate]: https://developer.apple.com/documentation/uikit/uiapplicationdelegate?language=objc
#![cfg(target_vendor = "apple")] // TODO: Remove once `objc2` allows compiling on all platforms
#![warn(clippy::exhaustive_enums)]
mod app_state;

View File

@@ -16,7 +16,6 @@
//! * `wayland-csd-adwaita-notitlebar`.
#![allow(clippy::mutable_key_type)]
#![warn(clippy::exhaustive_enums)]
use std::ffi::c_void;

View File

@@ -3,7 +3,6 @@
//! The supported OS version is Windows 7 or higher, though Windows 10 is
//! tested regularly.
#![cfg(target_os = "windows")] // FIXME(madsmtm): Allow compiling on all platforms.
#![warn(clippy::exhaustive_enums)]
#[macro_use]