This commit is contained in:
Frodo Baggins 2024-10-05 11:57:36 -07:00
parent fde78e5e10
commit 3df22f5d65

View file

@ -3,6 +3,7 @@
#pragma once
#include <span>
#include <vector>
#include <boost/container/small_vector.hpp>
#include <boost/container/static_vector.hpp>
#include "common/assert.h"
@ -179,8 +180,7 @@ struct Info {
std::span<const u32> user_data;
Stage stage;
using StringPool = boost::container::small_vector<std::string, 4>;
StringPool string_pool;
std::vector<std::string> string_pool;
u64 pgm_hash{};
VAddr pgm_base;