summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2016-07-21 17:25:08 -0700
committerStephen Toub <stoub@microsoft.com>2016-07-21 17:25:08 -0700
commit6ffcfee178dfef1cf60c66a98cdc8fec208cbdc2 (patch)
tree30bb7a986893bdfd7b800bfbdecdb6942931b9f3
parentfe3aaa3cc2d300858ae308d4a8ed95ae4b855b72 (diff)
downloadcoreclr-6ffcfee178dfef1cf60c66a98cdc8fec208cbdc2.tar.gz
coreclr-6ffcfee178dfef1cf60c66a98cdc8fec208cbdc2.tar.bz2
coreclr-6ffcfee178dfef1cf60c66a98cdc8fec208cbdc2.zip
Fix build break when FEATURE_SERIALIZATION defined
-rw-r--r--src/mscorlib/src/System/IO/DriveInfo.cs2
-rw-r--r--src/mscorlib/src/System/Reflection/Pointer.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mscorlib/src/System/IO/DriveInfo.cs b/src/mscorlib/src/System/IO/DriveInfo.cs
index a3cacf609a..be75e8979d 100644
--- a/src/mscorlib/src/System/IO/DriveInfo.cs
+++ b/src/mscorlib/src/System/IO/DriveInfo.cs
@@ -46,7 +46,7 @@ namespace System.IO
[ComVisible(true)]
public sealed class DriveInfo
#if FEATURE_SERIALIZATION
- , ISerializable
+ : ISerializable
#endif
{
private String _name;
diff --git a/src/mscorlib/src/System/Reflection/Pointer.cs b/src/mscorlib/src/System/Reflection/Pointer.cs
index 9008566f4a..dcd1f44d89 100644
--- a/src/mscorlib/src/System/Reflection/Pointer.cs
+++ b/src/mscorlib/src/System/Reflection/Pointer.cs
@@ -24,7 +24,7 @@ namespace System.Reflection {
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class Pointer
#if FEATURE_SERIALIZATION
- , ISerializable
+ : ISerializable
#endif
{
[SecurityCritical]