diff options
author | Mai M <mathew1800@gmail.com> | 2022-05-14 18:51:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-14 18:51:23 -0400 |
commit | 5c20373db3204687cfa3f287702d277b97bd80ed (patch) | |
tree | be27c0a623bfe7e0963863b7a49b5d76a060cbd7 /src/shader_recompiler/frontend/ir/opcodes.h | |
parent | 0b9ef3c0b844fbda14390c94bb6ddd37e3b36c90 (diff) | |
parent | f981e90af3a911596442aaf0f1e049f1b8e6003f (diff) |
Merge pull request #8337 from lioncash/fmt
general: Avoid ambiguous format_to compilation errors
Diffstat (limited to 'src/shader_recompiler/frontend/ir/opcodes.h')
-rw-r--r-- | src/shader_recompiler/frontend/ir/opcodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.h b/src/shader_recompiler/frontend/ir/opcodes.h index d17dc0376b..752879a186 100644 --- a/src/shader_recompiler/frontend/ir/opcodes.h +++ b/src/shader_recompiler/frontend/ir/opcodes.h @@ -103,6 +103,6 @@ struct fmt::formatter<Shader::IR::Opcode> { } template <typename FormatContext> auto format(const Shader::IR::Opcode& op, FormatContext& ctx) { - return format_to(ctx.out(), "{}", Shader::IR::NameOf(op)); + return fmt::format_to(ctx.out(), "{}", Shader::IR::NameOf(op)); } }; |