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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreclr/tools/Common/TypeSystem/Interop/IL/MarshalHelpers.Aot.cs')
-rw-r--r--src/coreclr/tools/Common/TypeSystem/Interop/IL/MarshalHelpers.Aot.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/coreclr/tools/Common/TypeSystem/Interop/IL/MarshalHelpers.Aot.cs b/src/coreclr/tools/Common/TypeSystem/Interop/IL/MarshalHelpers.Aot.cs
index b047f29e9ec..29abb9313ea 100644
--- a/src/coreclr/tools/Common/TypeSystem/Interop/IL/MarshalHelpers.Aot.cs
+++ b/src/coreclr/tools/Common/TypeSystem/Interop/IL/MarshalHelpers.Aot.cs
@@ -1,8 +1,6 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
-using System;
-
using Internal.IL;
using Internal.IL.Stubs;
@@ -51,7 +49,7 @@ namespace Internal.TypeSystem.Interop
internal static TypeDesc GetNativeMethodParameterType(TypeDesc type, MarshalAsDescriptor marshalAs, InteropStateManager interopStateManager, bool isReturn, bool isAnsi)
{
MarshallerKind elementMarshallerKind;
- MarshallerKind marshallerKind = MarshalHelpers.GetMarshallerKind(type,
+ MarshallerKind marshallerKind = GetMarshallerKind(type,
null, /* parameterIndex */
null, /* customModifierData */
marshalAs,
@@ -70,7 +68,7 @@ namespace Internal.TypeSystem.Interop
internal static TypeDesc GetNativeStructFieldType(TypeDesc type, MarshalAsDescriptor marshalAs, InteropStateManager interopStateManager, bool isAnsi)
{
MarshallerKind elementMarshallerKind;
- MarshallerKind marshallerKind = MarshalHelpers.GetMarshallerKind(type,
+ MarshallerKind marshallerKind = GetMarshallerKind(type,
null, /* parameterIndex */
null, /* customModifierData */
marshalAs,