Skip to content

Commit cdad744

Browse files
authored
Remove PartialEq attribute for LoggerType (#226)
`LoggerType` contains function pointers. `PartialEq` is not meaningful for function pointers. Crate compiles. Fails same two tests the main branch fails
1 parent 37f8396 commit cdad744

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/logging.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pub(crate) fn maybe_init_logging() {
1212
}
1313

1414
/// Describes how JACK should log info and error messages.
15-
#[derive(Copy, Clone, Debug, PartialEq)]
15+
#[derive(Copy, Clone, Debug)]
1616
pub enum LoggerType {
1717
/// Ignore all logging from JACK.
1818
None,

0 commit comments

Comments
 (0)