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/System.Private.CoreLib/src/System/Runtime/CompilerServices/ClassConstructorRunner.NonPortable.cs')
-rw-r--r--src/System.Private.CoreLib/src/System/Runtime/CompilerServices/ClassConstructorRunner.NonPortable.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/System.Private.CoreLib/src/System/Runtime/CompilerServices/ClassConstructorRunner.NonPortable.cs b/src/System.Private.CoreLib/src/System/Runtime/CompilerServices/ClassConstructorRunner.NonPortable.cs
index 4c309ca34..5374478e7 100644
--- a/src/System.Private.CoreLib/src/System/Runtime/CompilerServices/ClassConstructorRunner.NonPortable.cs
+++ b/src/System.Private.CoreLib/src/System/Runtime/CompilerServices/ClassConstructorRunner.NonPortable.cs
@@ -19,10 +19,9 @@ namespace System.Runtime.CompilerServices
{
//=========================================================================================================
// Intrinsic to call the cctor given a pointer to the code (this method's body is ignored and replaced
- // with a calli during compilation). The transform doesn't handle non-generic versions yet (i.e.
- // functions that are void).
+ // with a calli during compilation).
//=========================================================================================================
- private static T Call<T>(System.IntPtr pfn)
+ private static void Call(System.IntPtr pfn)
{
throw NotImplemented.ByDesign;
}