diff options
| author | 2022-05-14 16:46:15 -0400 | |
|---|---|---|
| committer | 2022-05-14 16:48:34 -0400 | |
| commit | f981e90af3a911596442aaf0f1e049f1b8e6003f (patch) | |
| tree | be27c0a623bfe7e0963863b7a49b5d76a060cbd7 /src/core/arm | |
| parent | Merge pull request #8308 from german77/disablesix (diff) | |
| download | yuzu-f981e90af3a911596442aaf0f1e049f1b8e6003f.tar.gz yuzu-f981e90af3a911596442aaf0f1e049f1b8e6003f.tar.xz yuzu-f981e90af3a911596442aaf0f1e049f1b8e6003f.zip | |
general: Avoid ambiguous format_to compilation errors
Ensures that we're using the fmt version of format_to.
These are also the only three outliers. All of the other formatters we
have are properly qualified.
Diffstat (limited to 'src/core/arm')
| -rw-r--r-- | src/core/arm/dynarmic/arm_dynarmic_cp15.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/dynarmic/arm_dynarmic_cp15.cpp b/src/core/arm/dynarmic/arm_dynarmic_cp15.cpp index a043e6735..6aae79c48 100644 --- a/src/core/arm/dynarmic/arm_dynarmic_cp15.cpp +++ b/src/core/arm/dynarmic/arm_dynarmic_cp15.cpp | |||
| @@ -20,7 +20,7 @@ struct fmt::formatter<Dynarmic::A32::CoprocReg> { | |||
| 20 | } | 20 | } |
| 21 | template <typename FormatContext> | 21 | template <typename FormatContext> |
| 22 | auto format(const Dynarmic::A32::CoprocReg& reg, FormatContext& ctx) { | 22 | auto format(const Dynarmic::A32::CoprocReg& reg, FormatContext& ctx) { |
| 23 | return format_to(ctx.out(), "cp{}", static_cast<size_t>(reg)); | 23 | return fmt::format_to(ctx.out(), "cp{}", static_cast<size_t>(reg)); |
| 24 | } | 24 | } |
| 25 | }; | 25 | }; |
| 26 | 26 | ||