diff options
author | 2021-08-12 20:46:38 +0700 | |
---|---|---|
committer | 2021-08-12 20:46:38 +0700 | |
commit | 853e938096376b006287c2ad2b3d566bda9efd07 (patch) | |
tree | 8db872e80377de132732643c6c33482f8ec5f1ac /winit | |
parent | bbe5fe9d71eb3b53ce4e84e43ca9ecc1e95bf1b2 (diff) | |
download | iced-853e938096376b006287c2ad2b3d566bda9efd07.tar.gz iced-853e938096376b006287c2ad2b3d566bda9efd07.tar.bz2 iced-853e938096376b006287c2ad2b3d566bda9efd07.zip |
Convert empty struct `PlatformSpecific` into empty type
Diffstat (limited to 'winit')
-rw-r--r-- | winit/src/settings/other.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winit/src/settings/other.rs b/winit/src/settings/other.rs index a25beed0..b1103f62 100644 --- a/winit/src/settings/other.rs +++ b/winit/src/settings/other.rs @@ -1,3 +1,3 @@ /// The platform specific window settings of an application. #[derive(Debug, Clone, Copy, PartialEq, Eq, Default)] -pub struct PlatformSpecific {} +pub struct PlatformSpecific; |