From 2de485d02a8e96686f383c48173f9db538363d34 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Sat, 30 Nov 2024 23:20:07 -0800 Subject: [PATCH] FEXCore: Removes stale function definition `CopyMemoryMapping` was removed a long time ago, the definition happened to remain. Remove the definition. --- FEXCore/Source/Interface/Context/Context.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/FEXCore/Source/Interface/Context/Context.h b/FEXCore/Source/Interface/Context/Context.h index 857e1a8217..eb1edf5208 100644 --- a/FEXCore/Source/Interface/Context/Context.h +++ b/FEXCore/Source/Interface/Context/Context.h @@ -301,9 +301,6 @@ class ContextImpl final : public FEXCore::Context::Context { CompileCodeResult CompileCode(FEXCore::Core::InternalThreadState* Thread, uint64_t GuestRIP, uint64_t MaxInst = 0); uintptr_t CompileBlock(FEXCore::Core::CpuStateFrame* Frame, uint64_t GuestRIP, uint64_t MaxInst = 0); - // Used for thread creation from syscalls - void CopyMemoryMapping(FEXCore::Core::InternalThreadState* ParentThread, FEXCore::Core::InternalThreadState* ChildThread); - uint8_t GetGPRSize() const { return Config.Is64BitMode ? 8 : 4; }