Use fmt/ranges.h for fmt::join()

fmt 11 requires it.
This commit is contained in:
Emmanuel Gil Peyrot 2024-12-29 19:08:44 +01:00
parent 278db8d1f8
commit a3d56a4d0b
4 changed files with 7 additions and 0 deletions

View file

@ -3,6 +3,7 @@
#include "os.hpp"
#include <platform/am.hpp>
#include <fmt/ranges.h>
namespace HLE {

View file

@ -17,6 +17,8 @@
#include <codecvt>
#include <variant>
#include <fmt/ranges.h>
namespace HLE {
namespace OS {

View file

@ -25,6 +25,8 @@
#include <sstream>
#include <iomanip>
#include <fmt/ranges.h>
// Hardcoded size for PXI buffers.
// TODO: These buffers should only be 0x1000 bytes large, but our PXI tables currently may span more than that because they map individual pages as entries
const auto pxi_static_buffer_size = 0x2000;

View file

@ -17,6 +17,8 @@
#include <filesystem>
#include <fmt/ranges.h>
namespace HLE::PXI {
std::array<uint8_t, 16> GenerateAESKey(const std::array<uint8_t, 16>& key_x, const std::array<uint8_t, 16>& key_y);
}