Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Runtime.Base/src/System/Runtime/CachedInterfaceDispatch.cs')
-rw-r--r--src/Runtime.Base/src/System/Runtime/CachedInterfaceDispatch.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Runtime.Base/src/System/Runtime/CachedInterfaceDispatch.cs b/src/Runtime.Base/src/System/Runtime/CachedInterfaceDispatch.cs
index 6ca1646c7..e4adb402e 100644
--- a/src/Runtime.Base/src/System/Runtime/CachedInterfaceDispatch.cs
+++ b/src/Runtime.Base/src/System/Runtime/CachedInterfaceDispatch.cs
@@ -17,7 +17,7 @@ namespace System.Runtime
unsafe private static IntPtr RhpCidResolve(IntPtr callerTransitionBlockParam, IntPtr pCell)
{
IntPtr locationOfThisPointer = callerTransitionBlockParam + TransitionBlock.GetThisOffset();
- object pObject = Unsafe.As<IntPtr, Object>(ref *(IntPtr*)locationOfThisPointer);
+ object pObject = Unsafe.As<IntPtr, object>(ref *(IntPtr*)locationOfThisPointer);
IntPtr dispatchResolveTarget = RhpCidResolve_Worker(pObject, pCell);
if (dispatchResolveTarget == InternalCalls.RhpGetCastableObjectDispatchHelper())