Nullable: SpinWait/Lock (dotnet/coreclr#23613)
authorStephen Toub <stoub@microsoft.com>
Tue, 2 Apr 2019 00:06:03 +0000 (20:06 -0400)
committerGitHub <noreply@github.com>
Tue, 2 Apr 2019 00:06:03 +0000 (20:06 -0400)
Commit migrated from https://github.com/dotnet/coreclr/commit/b86e0c59fc4b2691131de3cd789a4309e3cb7252

src/libraries/System.Private.CoreLib/src/System/Threading/SpinLock.cs
src/libraries/System.Private.CoreLib/src/System/Threading/SpinWait.cs

index 2b06105..6149c82 100644 (file)
@@ -11,6 +11,7 @@
 //
 // =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
 
+#nullable enable
 using System.Diagnostics;
 using System.Runtime.CompilerServices;
 
index 6fa99e1..4124965 100644 (file)
@@ -8,6 +8,7 @@
 //
 // =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
 
+#nullable enable
 using System.Diagnostics;
 
 namespace System.Threading