Fix build break when FEATURE_SERIALIZATION defined
authorStephen Toub <stoub@microsoft.com>
Fri, 22 Jul 2016 00:25:08 +0000 (17:25 -0700)
committerStephen Toub <stoub@microsoft.com>
Fri, 22 Jul 2016 00:25:08 +0000 (17:25 -0700)
Commit migrated from https://github.com/dotnet/coreclr/commit/6ffcfee178dfef1cf60c66a98cdc8fec208cbdc2

src/coreclr/src/mscorlib/src/System/IO/DriveInfo.cs
src/coreclr/src/mscorlib/src/System/Reflection/Pointer.cs

index a3cacf6..be75e89 100644 (file)
@@ -46,7 +46,7 @@ namespace System.IO
     [ComVisible(true)]
     public sealed class DriveInfo
 #if FEATURE_SERIALIZATION
-        , ISerializable
+        : ISerializable
 #endif
     {
         private String _name;
index 9008566..dcd1f44 100644 (file)
@@ -24,7 +24,7 @@ namespace System.Reflection {
     [System.Runtime.InteropServices.ComVisible(true)]
     public sealed class Pointer
 #if FEATURE_SERIALIZATION
-        , ISerializable
+        : ISerializable
 #endif
     {
     [SecurityCritical]