From 6e684c8781b88fc173e1126d73f6717539ffd3dc Mon Sep 17 00:00:00 2001 From: dbr Date: Wed, 22 Mar 2023 23:07:54 +1030 Subject: [PATCH] Other clippy lint I think the lint was relegated to nursery in later releases but seems reasonable enough in this case --- imgui/src/stacks.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui/src/stacks.rs b/imgui/src/stacks.rs index 1b014cf..4bebde1 100644 --- a/imgui/src/stacks.rs +++ b/imgui/src/stacks.rs @@ -289,7 +289,7 @@ impl Ui { } /// A temporary change in item flags -#[derive(Copy, Clone, Debug, PartialEq)] +#[derive(Copy, Clone, Debug, PartialEq, Eq)] pub enum ItemFlag { AllowKeyboardFocus(bool), ButtonRepeat(bool),