Imported string instead of changing name to std::string_view

This commit is contained in:
nickci2002 2025-06-18 12:13:03 -04:00
parent 0e73cdaaf7
commit 4a810b826c

View File

@ -5,6 +5,7 @@
#include <map> #include <map>
#include <mutex> #include <mutex>
#include <string>
#include <string_view> #include <string_view>
#include "common/enum.h" #include "common/enum.h"
#include "common/singleton.h" #include "common/singleton.h"
@ -92,7 +93,7 @@ struct VirtualMemoryArea {
VMAType type = VMAType::Free; VMAType type = VMAType::Free;
MemoryProt prot = MemoryProt::NoAccess; MemoryProt prot = MemoryProt::NoAccess;
bool disallow_merge = false; bool disallow_merge = false;
std::string_view name = ""; std::string name = "";
uintptr_t fd = 0; uintptr_t fd = 0;
bool is_exec = false; bool is_exec = false;