From 87f9fa23d58f072c4f05f9bc51024ae48e30420f Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Thu, 4 Jul 2024 11:42:06 -0400 Subject: [PATCH] chore: `cfg` warnings --- leptos_server/src/resource.rs | 1 + reactive_graph/src/wrappers.rs | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/leptos_server/src/resource.rs b/leptos_server/src/resource.rs index aa96fc976..81ad48ad1 100644 --- a/leptos_server/src/resource.rs +++ b/leptos_server/src/resource.rs @@ -244,6 +244,7 @@ where pub fn new_with_options( source: impl Fn() -> S + Send + Sync + 'static, fetcher: impl Fn(S) -> Fut + Send + Sync + 'static, + #[allow(unused)] // this is used with `feature = "ssr"` blocking: bool, ) -> ArcResource where diff --git a/reactive_graph/src/wrappers.rs b/reactive_graph/src/wrappers.rs index a89f18375..71d4f7c14 100644 --- a/reactive_graph/src/wrappers.rs +++ b/reactive_graph/src/wrappers.rs @@ -124,7 +124,7 @@ pub mod read { fn from(value: ArcReadSignal) -> Self { Self { inner: SignalTypes::ReadSignal(value), - #[cfg(any(debug_assertions, feature = "ssr"))] + #[cfg(debug_assertions)] defined_at: std::panic::Location::caller(), } } @@ -135,7 +135,7 @@ pub mod read { fn from(value: ArcRwSignal) -> Self { Self { inner: SignalTypes::ReadSignal(value.read_only()), - #[cfg(any(debug_assertions, feature = "ssr"))] + #[cfg(debug_assertions)] defined_at: std::panic::Location::caller(), } } @@ -146,7 +146,7 @@ pub mod read { fn from(value: ArcMemo) -> Self { Self { inner: SignalTypes::Memo(value), - #[cfg(any(debug_assertions, feature = "ssr"))] + #[cfg(debug_assertions)] defined_at: std::panic::Location::caller(), } } @@ -375,7 +375,7 @@ pub mod read { fn from(value: ReadSignal) -> Self { Self { inner: StoredValue::new(SignalTypes::ReadSignal(value.into())), - #[cfg(any(debug_assertions, feature = "ssr"))] + #[cfg(debug_assertions)] defined_at: std::panic::Location::caller(), } } @@ -388,7 +388,7 @@ pub mod read { inner: StoredValue::new(SignalTypes::ReadSignal( value.read_only().into(), )), - #[cfg(any(debug_assertions, feature = "ssr"))] + #[cfg(debug_assertions)] defined_at: std::panic::Location::caller(), } } @@ -399,7 +399,7 @@ pub mod read { fn from(value: Memo) -> Self { Self { inner: StoredValue::new(SignalTypes::Memo(value.into())), - #[cfg(any(debug_assertions, feature = "ssr"))] + #[cfg(debug_assertions)] defined_at: std::panic::Location::caller(), } } @@ -738,7 +738,7 @@ pub mod write { T: 'static, { inner: SignalSetterTypes, - #[cfg(any(debug_assertions, feature = "ssr"))] + #[cfg(debug_assertions)] defined_at: &'static std::panic::Location<'static>, } @@ -753,7 +753,7 @@ pub mod write { fn default() -> Self { Self { inner: SignalSetterTypes::Default, - #[cfg(any(debug_assertions, feature = "ssr"))] + #[cfg(debug_assertions)] defined_at: std::panic::Location::caller(), } } @@ -801,7 +801,7 @@ pub mod write { inner: SignalSetterTypes::Mapped(StoredValue::new(Box::new( mapped_setter, ))), - #[cfg(any(debug_assertions, feature = "ssr"))] + #[cfg(debug_assertions)] defined_at: std::panic::Location::caller(), } } @@ -826,7 +826,7 @@ pub mod write { fn from(value: WriteSignal) -> Self { Self { inner: SignalSetterTypes::Write(value), - #[cfg(any(debug_assertions, feature = "ssr"))] + #[cfg(debug_assertions)] defined_at: std::panic::Location::caller(), } } @@ -840,7 +840,7 @@ pub mod write { fn from(value: RwSignal) -> Self { Self { inner: SignalSetterTypes::Write(value.write_only()), - #[cfg(any(debug_assertions, feature = "ssr"))] + #[cfg(debug_assertions)] defined_at: std::panic::Location::caller(), } }