Downgrade projects to C++17.

This commit is contained in:
Skyth
2024-12-13 18:31:55 +03:00
parent 02d23b3463
commit 847842cd28
20 changed files with 250 additions and 189 deletions

View File

@@ -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