From 8d48900ae3806e56fd4126821b6c42d02410485e Mon Sep 17 00:00:00 2001 From: reverse Date: Sun, 23 Aug 2026 13:01:05 +0000 Subject: [PATCH] config: derive Eq on the block-parser token enum --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index e3290dc..6825dd3 100644 --- a/src/config.rs +++ b/src/config.rs @@ -387,7 +387,7 @@ impl Config { // other block (`set`, `limits`, …) is cosmetic grouping whose fields are flat // keys, so the long tail of module options needs no per-key mapping. -#[derive(PartialEq)] +#[derive(PartialEq, Eq)] enum Tok { Open, Close,