diff options
| author | 2022-05-14 18:51:23 -0400 | |
|---|---|---|
| committer | 2022-05-14 18:51:23 -0400 | |
| commit | 5c20373db3204687cfa3f287702d277b97bd80ed (patch) | |
| tree | be27c0a623bfe7e0963863b7a49b5d76a060cbd7 /src/shader_recompiler/frontend/maxwell/opcodes.h | |
| parent | Merge pull request #8308 from german77/disablesix (diff) | |
| parent | general: Avoid ambiguous format_to compilation errors (diff) | |
| download | yuzu-5c20373db3204687cfa3f287702d277b97bd80ed.tar.gz yuzu-5c20373db3204687cfa3f287702d277b97bd80ed.tar.xz yuzu-5c20373db3204687cfa3f287702d277b97bd80ed.zip | |
Merge pull request #8337 from lioncash/fmt
general: Avoid ambiguous format_to compilation errors
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/opcodes.h')
| -rw-r--r-- | src/shader_recompiler/frontend/maxwell/opcodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/opcodes.h b/src/shader_recompiler/frontend/maxwell/opcodes.h index 83093fca0..72dd143c2 100644 --- a/src/shader_recompiler/frontend/maxwell/opcodes.h +++ b/src/shader_recompiler/frontend/maxwell/opcodes.h | |||
| @@ -24,6 +24,6 @@ struct fmt::formatter<Shader::Maxwell::Opcode> { | |||
| 24 | } | 24 | } |
| 25 | template <typename FormatContext> | 25 | template <typename FormatContext> |
| 26 | auto format(const Shader::Maxwell::Opcode& opcode, FormatContext& ctx) { | 26 | auto format(const Shader::Maxwell::Opcode& opcode, FormatContext& ctx) { |
| 27 | return format_to(ctx.out(), "{}", NameOf(opcode)); | 27 | return fmt::format_to(ctx.out(), "{}", NameOf(opcode)); |
| 28 | } | 28 | } |
| 29 | }; | 29 | }; |