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:
authorJan Kotas <jkotas@microsoft.com>2016-08-27 05:39:59 +0300
committerGitHub <noreply@github.com>2016-08-27 05:39:59 +0300
commitaffafd842e6d817da7b85d03887595a169919d26 (patch)
tree7514e940519057eae1c69d13b6fa10aca0d6f2c7 /src/Runtime.Base
parent620255abdd11cb7a9e57974bd13512b585840ba5 (diff)
Formatting fixes (#1734)
Diffstat (limited to 'src/Runtime.Base')
-rw-r--r--src/Runtime.Base/src/System/Runtime/CachedInterfaceDispatch.cs2
-rw-r--r--src/Runtime.Base/src/System/Runtime/__Finalizer.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Runtime.Base/src/System/Runtime/CachedInterfaceDispatch.cs b/src/Runtime.Base/src/System/Runtime/CachedInterfaceDispatch.cs
index a0dec3b46..18101d1f9 100644
--- a/src/Runtime.Base/src/System/Runtime/CachedInterfaceDispatch.cs
+++ b/src/Runtime.Base/src/System/Runtime/CachedInterfaceDispatch.cs
@@ -16,7 +16,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);
return RhpCidResolve_Worker(pObject, pCell);
}
diff --git a/src/Runtime.Base/src/System/Runtime/__Finalizer.cs b/src/Runtime.Base/src/System/Runtime/__Finalizer.cs
index 42cedbd99..c74d16cf3 100644
--- a/src/Runtime.Base/src/System/Runtime/__Finalizer.cs
+++ b/src/Runtime.Base/src/System/Runtime/__Finalizer.cs
@@ -57,7 +57,7 @@ namespace System.Runtime
{
// Drain the queue of finalizable objects.
while (true)
- {
+ {
Object target = InternalCalls.RhpGetNextFinalizableObject();
if (target == null)
return;