From 87c28ebac2739d38a1de417d9b90b3f0f1c2b104 Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Wed, 13 Feb 2019 17:58:52 -0500 Subject: [PATCH] Adjust corert for shared SafeHandle and EventRegistrationToken Signed-off-by: dotnet-bot --- .../shared/System/Runtime/InteropServices/SafeHandle.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System.Private.CoreLib/shared/System/Runtime/InteropServices/SafeHandle.cs b/src/System.Private.CoreLib/shared/System/Runtime/InteropServices/SafeHandle.cs index 5962792..deef5b7 100644 --- a/src/System.Private.CoreLib/shared/System/Runtime/InteropServices/SafeHandle.cs +++ b/src/System.Private.CoreLib/shared/System/Runtime/InteropServices/SafeHandle.cs @@ -13,7 +13,7 @@ namespace System.Runtime.InteropServices // reliably guarantee handle release in the face of thread aborts. /// Represents a wrapper class for operating system handles. - public abstract class SafeHandle : CriticalFinalizerObject, IDisposable + public abstract partial class SafeHandle : CriticalFinalizerObject, IDisposable { // IMPORTANT: // - Do not add or rearrange fields as the EE depends on this layout, -- 2.7.4