From b6b8e640f56c81ce45cbe6fe254d3e6ad0d76668 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Thu, 7 Mar 2024 13:41:54 +0000 Subject: [PATCH] Replace `b` with `_` as it is not needed --- core/fmt/fmt.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/fmt/fmt.odin b/core/fmt/fmt.odin index 6ec495500..8ce01c9dd 100644 --- a/core/fmt/fmt.odin +++ b/core/fmt/fmt.odin @@ -2296,7 +2296,7 @@ fmt_named :: proc(fi: ^Info, v: any, verb: rune, info: runtime.Type_Info_Named) fmt_bit_set(fi, v, verb = verb) case: if verb == 'w' { - #partial switch b in info.base.variant { + #partial switch _ in info.base.variant { case runtime.Type_Info_Array, runtime.Type_Info_Enumerated_Array, runtime.Type_Info_Dynamic_Array,