diff --git a/lib/src/config/mod.rs b/lib/src/config/mod.rs index 574d3c6..71b086d 100644 --- a/lib/src/config/mod.rs +++ b/lib/src/config/mod.rs @@ -102,7 +102,6 @@ pub enum ResolutionOverride { Default, } -#[allow(clippy::derivable_impls)] impl Default for Config { fn default() -> Self { Self { @@ -115,7 +114,6 @@ impl Default for Config { } } -#[allow(clippy::derivable_impls)] impl Default for VulkanRendererConfig { fn default() -> Self { Self { diff --git a/lib/src/renderer/pixels.rs b/lib/src/renderer/pixels.rs index f441b5b..6922a28 100644 --- a/lib/src/renderer/pixels.rs +++ b/lib/src/renderer/pixels.rs @@ -10,6 +10,7 @@ use crate::connect::ResolutionData; pub struct RendererBackendManager {} impl RendererBackendManager { + #[allow(clippy::new_without_default)] pub fn new() -> Self { Self {} } diff --git a/lib/src/renderer/vulkan/utils.rs b/lib/src/renderer/vulkan/utils.rs index 96bef6c..869aa4c 100644 --- a/lib/src/renderer/vulkan/utils.rs +++ b/lib/src/renderer/vulkan/utils.rs @@ -24,7 +24,6 @@ pub(super) unsafe fn record_submit_commandbuffer