diff options
| author | Glenn Smith <glenn@vector35.com> | 2025-04-29 12:17:17 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2025-04-29 13:04:37 -0400 |
| commit | 9852603244671001892114359042093757709461 (patch) | |
| tree | 109e9712546b2ef49a0d6b3836614a4e4a36fb34 /mediumlevelilinstruction.cpp | |
| parent | 5651090172297363543443832254117629267746 (diff) | |
Fix fmt formatting of IL instruction tokens
Diffstat (limited to 'mediumlevelilinstruction.cpp')
| -rw-r--r-- | mediumlevelilinstruction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediumlevelilinstruction.cpp b/mediumlevelilinstruction.cpp index 32b1ead4..ecdac2e8 100644 --- a/mediumlevelilinstruction.cpp +++ b/mediumlevelilinstruction.cpp @@ -3205,7 +3205,7 @@ fmt::format_context::iterator fmt::formatter<MediumLevelILInstruction>::format(c for (auto& token: tokens) { - fmt::format_to(ctx.out(), token.text); + fmt::format_to(ctx.out(), "{}", token.text); } } else |
