summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2019-05-09 15:25:49 -0400
committerJan Kotas <jkotas@microsoft.com>2019-05-09 20:44:16 -0700
commit09c3a12c4eaacad778d349bc8fca657d486ac9a9 (patch)
treedd187d744a202f8e58de972db006c8c63290ab57
parent2fb4ed470883a9f9192fe70deecf364a7fcb101d (diff)
downloadcoreclr-09c3a12c4eaacad778d349bc8fca657d486ac9a9.tar.gz
coreclr-09c3a12c4eaacad778d349bc8fca657d486ac9a9.tar.bz2
coreclr-09c3a12c4eaacad778d349bc8fca657d486ac9a9.zip
Fix netfx build with nullable annotations
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
-rw-r--r--src/System.Private.CoreLib/shared/System/IO/Path.Windows.cs1
-rw-r--r--src/System.Private.CoreLib/shared/System/IO/Path.cs1
-rw-r--r--src/System.Private.CoreLib/shared/System/IO/PathHelper.Windows.cs1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/System.Private.CoreLib/shared/System/IO/Path.Windows.cs b/src/System.Private.CoreLib/shared/System/IO/Path.Windows.cs
index fccd30c052..71a986eeef 100644
--- a/src/System.Private.CoreLib/shared/System/IO/Path.Windows.cs
+++ b/src/System.Private.CoreLib/shared/System/IO/Path.Windows.cs
@@ -2,6 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
+#nullable enable
using System.Diagnostics;
using System.Text;
diff --git a/src/System.Private.CoreLib/shared/System/IO/Path.cs b/src/System.Private.CoreLib/shared/System/IO/Path.cs
index 61235e3375..27741b9248 100644
--- a/src/System.Private.CoreLib/shared/System/IO/Path.cs
+++ b/src/System.Private.CoreLib/shared/System/IO/Path.cs
@@ -2,6 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
+#nullable enable
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Text;
diff --git a/src/System.Private.CoreLib/shared/System/IO/PathHelper.Windows.cs b/src/System.Private.CoreLib/shared/System/IO/PathHelper.Windows.cs
index ae935158ef..83618cfa13 100644
--- a/src/System.Private.CoreLib/shared/System/IO/PathHelper.Windows.cs
+++ b/src/System.Private.CoreLib/shared/System/IO/PathHelper.Windows.cs
@@ -2,6 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
+#nullable enable
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Text;