mirror of
https://github.com/N64Recomp/N64Recomp.git
synced 2025-05-24 12:24:59 +00:00
Fix MSVC v143 errors with fmt
This commit is contained in:
parent
302dd091c2
commit
30b1fceaf2
2 changed files with 6 additions and 6 deletions
|
@ -78,12 +78,12 @@ bool process_instruction(const RecompPort::Context& context, const RecompPort::F
|
|||
|
||||
auto print_line = [&]<typename... Ts>(fmt::format_string<Ts...> fmt_str, Ts ...args) {
|
||||
print_indent();
|
||||
fmt::print(output_file, fmt_str, args...);
|
||||
fmt::vprint(output_file, fmt_str, fmt::make_format_args(args...));
|
||||
fmt::print(output_file, ";\n");
|
||||
};
|
||||
|
||||
auto print_branch_condition = [&]<typename... Ts>(fmt::format_string<Ts...> fmt_str, Ts ...args) {
|
||||
fmt::print(output_file, fmt_str, args...);
|
||||
fmt::vprint(output_file, fmt_str, fmt::make_format_args(args...));
|
||||
fmt::print(output_file, " ");
|
||||
};
|
||||
|
||||
|
@ -99,7 +99,7 @@ bool process_instruction(const RecompPort::Context& context, const RecompPort::F
|
|||
process_instruction(context, func, stats, skipped_insns, instr_index + 1, instructions, output_file, false, false, link_branch_index, next_reloc_index, dummy_needs_link_branch, dummy_is_branch_likely, static_funcs_out);
|
||||
}
|
||||
print_indent();
|
||||
fmt::print(output_file, fmt_str, args...);
|
||||
fmt::vprint(output_file, fmt_str, fmt::make_format_args(args...));
|
||||
if (needs_link_branch) {
|
||||
fmt::print(output_file, ";\n goto after_{};\n", link_branch_index);
|
||||
} else {
|
||||
|
@ -120,7 +120,7 @@ bool process_instruction(const RecompPort::Context& context, const RecompPort::F
|
|||
process_instruction(context, func, stats, skipped_insns, instr_index + 1, instructions, output_file, true, false, link_branch_index, next_reloc_index, dummy_needs_link_branch, dummy_is_branch_likely, static_funcs_out);
|
||||
}
|
||||
fmt::print(output_file, " ");
|
||||
fmt::print(output_file, fmt_str, args...);
|
||||
fmt::vprint(output_file, fmt_str, fmt::make_format_args(args...));
|
||||
if (needs_link_branch) {
|
||||
fmt::print(output_file, ";\n goto after_{}", link_branch_index);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue