mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-12-06 04:41:44 +00:00
Downgrade projects to C++17.
This commit is contained in:
@@ -13,9 +13,18 @@ enum SymbolType
|
||||
struct Symbol
|
||||
{
|
||||
mutable std::string name{};
|
||||
uint32_t address{};
|
||||
uint32_t size{};
|
||||
size_t address{};
|
||||
size_t size{};
|
||||
mutable SymbolType type{};
|
||||
|
||||
Symbol()
|
||||
{
|
||||
}
|
||||
|
||||
Symbol(std::string name, size_t address, size_t size, SymbolType type)
|
||||
: name(std::move(name)), address(address), size(size), type(type)
|
||||
{
|
||||
}
|
||||
};
|
||||
|
||||
struct SymbolComparer
|
||||
|
||||
Reference in New Issue
Block a user