summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend
diff options
context:
space:
mode:
authorMai M <mathew1800@gmail.com>2022-05-15 00:51:23 +0200
committerGitHub <noreply@github.com>2022-05-15 00:51:23 +0200
commit5c20373db3204687cfa3f287702d277b97bd80ed (patch)
treebe27c0a623bfe7e0963863b7a49b5d76a060cbd7 /src/shader_recompiler/frontend
parentMerge pull request #8308 from german77/disablesix (diff)
parentgeneral: Avoid ambiguous format_to compilation errors (diff)
downloadyuzu-5c20373db3204687cfa3f287702d277b97bd80ed.tar
yuzu-5c20373db3204687cfa3f287702d277b97bd80ed.tar.gz
yuzu-5c20373db3204687cfa3f287702d277b97bd80ed.tar.bz2
yuzu-5c20373db3204687cfa3f287702d277b97bd80ed.tar.lz
yuzu-5c20373db3204687cfa3f287702d277b97bd80ed.tar.xz
yuzu-5c20373db3204687cfa3f287702d277b97bd80ed.tar.zst
yuzu-5c20373db3204687cfa3f287702d277b97bd80ed.zip
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/frontend/ir/opcodes.h2
-rw-r--r--src/shader_recompiler/frontend/maxwell/opcodes.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/frontend/ir/opcodes.h b/src/shader_recompiler/frontend/ir/opcodes.h
index d17dc0376..752879a18 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));
}
};
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> {
}
template <typename FormatContext>
auto format(const Shader::Maxwell::Opcode& opcode, FormatContext& ctx) {
- return format_to(ctx.out(), "{}", NameOf(opcode));
+ return fmt::format_to(ctx.out(), "{}", NameOf(opcode));
}
};