From 9852603244671001892114359042093757709461 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Tue, 29 Apr 2025 12:17:17 -0400 Subject: Fix fmt formatting of IL instruction tokens --- lowlevelilinstruction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lowlevelilinstruction.cpp') diff --git a/lowlevelilinstruction.cpp b/lowlevelilinstruction.cpp index 21360bde..db085957 100644 --- a/lowlevelilinstruction.cpp +++ b/lowlevelilinstruction.cpp @@ -3765,7 +3765,7 @@ fmt::format_context::iterator fmt::formatter::format(cons for (auto& token: tokens) { - fmt::format_to(ctx.out(), token.text); + fmt::format_to(ctx.out(), "{}", token.text); } } else -- cgit v1.3.1