Merge pull request dotnet/corertdotnet/coreclr#4340 from dotnet/nmirror
authorJan Kotas <jkotas@microsoft.com>
Thu, 17 Aug 2017 21:22:32 +0000 (14:22 -0700)
committerJan Kotas <jkotas@microsoft.com>
Fri, 18 Aug 2017 04:42:32 +0000 (21:42 -0700)
Merge nmirror to master

Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
Commit migrated from https://github.com/dotnet/coreclr/commit/367d9b1dd1b542f3d391d0b9111d5914602db2d9

src/coreclr/src/mscorlib/shared/System/Reflection/Pointer.cs

index 55376c6..e1a9990 100644 (file)
@@ -46,6 +46,6 @@ namespace System.Reflection
         }
 
         internal Type GetPointerType() => _ptrType;
-        internal object GetPointerValue() => (IntPtr)_ptr;
+        internal IntPtr GetPointerValue() => (IntPtr)_ptr;
     }
 }