From 4a810b826ce55b1256d72caef38cc03cb4566dbc Mon Sep 17 00:00:00 2001 From: nickci2002 Date: Wed, 18 Jun 2025 12:13:03 -0400 Subject: [PATCH] Imported string instead of changing name to std::string_view --- src/core/memory.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/memory.h b/src/core/memory.h index eebd36a31..d0a2a09b4 100644 --- a/src/core/memory.h +++ b/src/core/memory.h @@ -5,6 +5,7 @@ #include #include +#include #include #include "common/enum.h" #include "common/singleton.h" @@ -92,7 +93,7 @@ struct VirtualMemoryArea { VMAType type = VMAType::Free; MemoryProt prot = MemoryProt::NoAccess; bool disallow_merge = false; - std::string_view name = ""; + std::string name = ""; uintptr_t fd = 0; bool is_exec = false;