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>2015-12-01 10:03:50 +0300
committerJan Kotas <jkotas@microsoft.com>2015-12-01 21:21:45 +0300
commita5e0aa9eb31c73b70d74a08f2803ee6a36a8ee8c (patch)
tree4d860f6944e24cfbbea6268b54a72c4868769545 /src/Runtime.Base
parent15899f1bcade19ade8ac56ae555e129d0f26438d (diff)
Delete /*internal*/ comments
Diffstat (limited to 'src/Runtime.Base')
-rw-r--r--src/Runtime.Base/src/System/Runtime/GCStress.cs4
-rw-r--r--src/Runtime.Base/src/System/Runtime/RuntimeExports.cs4
-rw-r--r--src/Runtime.Base/src/System/Runtime/TypeCast.cs20
3 files changed, 14 insertions, 14 deletions
diff --git a/src/Runtime.Base/src/System/Runtime/GCStress.cs b/src/Runtime.Base/src/System/Runtime/GCStress.cs
index ce59089e4..9753801c6 100644
--- a/src/Runtime.Base/src/System/Runtime/GCStress.cs
+++ b/src/Runtime.Base/src/System/Runtime/GCStress.cs
@@ -5,10 +5,10 @@ using System.Runtime.CompilerServices;
namespace System.Runtime
{
- public /*internal*/ class GCStress
+ public class GCStress
{
[RuntimeExport("RhGcStress_Initialize")]
- public /*internal*/ static void Initialize()
+ public static void Initialize()
{
#if FEATURE_GC_STRESS
// This method is called via binder-injected code in a module's DllMain. The OS guarantees that
diff --git a/src/Runtime.Base/src/System/Runtime/RuntimeExports.cs b/src/Runtime.Base/src/System/Runtime/RuntimeExports.cs
index 9378e1c10..02df0880d 100644
--- a/src/Runtime.Base/src/System/Runtime/RuntimeExports.cs
+++ b/src/Runtime.Base/src/System/Runtime/RuntimeExports.cs
@@ -269,7 +269,7 @@ namespace System.Runtime
}
[RuntimeExport("RhArrayStoreCheckAny")]
- static public /*internal*/ unsafe void RhArrayStoreCheckAny(object array, ref Hack_o_p data)
+ static public unsafe void RhArrayStoreCheckAny(object array, ref Hack_o_p data)
{
if (array == null)
{
@@ -288,7 +288,7 @@ namespace System.Runtime
}
[RuntimeExport("RhBoxAndNullCheck")]
- static public /*internal*/ unsafe bool RhBoxAndNullCheck(ref Hack_o_p data, EETypePtr pEEType)
+ static public unsafe bool RhBoxAndNullCheck(ref Hack_o_p data, EETypePtr pEEType)
{
EEType* ptrEEType = (EEType*)pEEType.ToPointer();
if (ptrEEType->IsValueType)
diff --git a/src/Runtime.Base/src/System/Runtime/TypeCast.cs b/src/Runtime.Base/src/System/Runtime/TypeCast.cs
index 0f9d59904..0b90c6998 100644
--- a/src/Runtime.Base/src/System/Runtime/TypeCast.cs
+++ b/src/Runtime.Base/src/System/Runtime/TypeCast.cs
@@ -17,10 +17,10 @@ namespace System.Runtime
//
/////////////////////////////////////////////////////////////////////////////////////////////////////
- public /*internal*/ static class TypeCast
+ public static class TypeCast
{
[RuntimeExport("RhTypeCast_IsInstanceOfClass")]
- static public /*internal*/ unsafe object IsInstanceOfClass(object obj, void* pvTargetType)
+ static public unsafe object IsInstanceOfClass(object obj, void* pvTargetType)
{
if (obj == null)
{
@@ -126,7 +126,7 @@ namespace System.Runtime
}
[RuntimeExport("RhTypeCast_CheckCastClass")]
- static public /*internal*/ unsafe object CheckCastClass(Object obj, void* pvTargetEEType)
+ static public unsafe object CheckCastClass(Object obj, void* pvTargetEEType)
{
// a null value can be cast to anything
if (obj == null)
@@ -151,7 +151,7 @@ namespace System.Runtime
}
[RuntimeExport("RhTypeCast_CheckUnbox")]
- static public /*internal*/ unsafe void CheckUnbox(Object obj, byte expectedCorElementType)
+ static public unsafe void CheckUnbox(Object obj, byte expectedCorElementType)
{
if (obj == null)
{
@@ -209,7 +209,7 @@ namespace System.Runtime
}
[RuntimeExport("RhTypeCast_CheckCastArray")]
- static public /*internal*/ unsafe object CheckCastArray(Object obj, void* pvTargetEEType)
+ static public unsafe object CheckCastArray(Object obj, void* pvTargetEEType)
{
// a null value can be cast to anything
if (obj == null)
@@ -644,7 +644,7 @@ namespace System.Runtime
}
[RuntimeExport("RhTypeCast_CheckCastInterface")]
- static public /*internal*/ unsafe object CheckCastInterface(Object obj, void* pvTargetEEType)
+ static public unsafe object CheckCastInterface(Object obj, void* pvTargetEEType)
{
// a null value can be cast to anything
if (obj == null)
@@ -684,7 +684,7 @@ namespace System.Runtime
}
[RuntimeExport("RhTypeCast_CheckArrayStore")]
- static public /*internal*/ unsafe void CheckArrayStore(object array, object obj)
+ static public unsafe void CheckArrayStore(object array, object obj)
{
if (array == null || obj == null)
{
@@ -724,7 +724,7 @@ namespace System.Runtime
[RuntimeExport("RhTypeCast_CheckVectorElemAddr")]
- static public /*internal*/ unsafe void CheckVectorElemAddr(void* pvElemType, object array)
+ static public unsafe void CheckVectorElemAddr(void* pvElemType, object array)
{
if (array == null)
{
@@ -818,7 +818,7 @@ namespace System.Runtime
// this is necessary for shared generic code - Foo<T> may be executing
// for T being an interface, an array or a class
[RuntimeExport("RhTypeCast_IsInstanceOf")]
- static public /*internal*/ unsafe object IsInstanceOf(object obj, void* pvTargetType)
+ static public unsafe object IsInstanceOf(object obj, void* pvTargetType)
{
EEType* pTargetType = (EEType*)pvTargetType;
if (pTargetType->IsArray)
@@ -830,7 +830,7 @@ namespace System.Runtime
}
[RuntimeExport("RhTypeCast_CheckCast")]
- static public /*internal*/ unsafe object CheckCast(Object obj, void* pvTargetType)
+ static public unsafe object CheckCast(Object obj, void* pvTargetType)
{
EEType* pTargetType = (EEType*)pvTargetType;
if (pTargetType->IsArray)