From 217f7aabd70616d82ef8822c0a737bda1868b54c Mon Sep 17 00:00:00 2001 From: Worik <5387413+worikgh@users.noreply.github.com> Date: Sat, 10 Jan 2026 13:15:21 +1300 Subject: [PATCH] Remove `PartialEq` attribute for `LoggerType` `LoggerType` contains function pointers. `PartialEq` is not meaningful for function pointers. Crate compiles. Fails same two tests the main branch fails --- src/logging.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logging.rs b/src/logging.rs index 420db1a7c..18aa90947 100644 --- a/src/logging.rs +++ b/src/logging.rs @@ -12,7 +12,7 @@ pub(crate) fn maybe_init_logging() { } /// Describes how JACK should log info and error messages. -#[derive(Copy, Clone, Debug, PartialEq)] +#[derive(Copy, Clone, Debug)] pub enum LoggerType { /// Ignore all logging from JACK. None,