From 09c75f64ad39c5953b22a5f12d1c9995a3d7ae18 Mon Sep 17 00:00:00 2001 From: Soumik15630m Date: Sun, 8 Feb 2026 03:15:54 +0530 Subject: [PATCH] MSVC compiler ambiguity addressed between 'char' & 'signed char' --- include/fmt/c.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/fmt/c.h b/include/fmt/c.h index aaf60fa4..16ddecc1 100644 --- a/include/fmt/c.h +++ b/include/fmt/c.h @@ -192,7 +192,6 @@ static inline FmtArg fmt_identity(FmtArg x) { return x; } FmtArg: fmt_identity, \ _Bool: fmt_from_bool, \ char: fmt_from_char, \ - signed char: fmt_from_int, \ unsigned char: fmt_from_uint, \ short: fmt_from_int, \ unsigned short: fmt_from_uint, \