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>2017-08-22 19:48:27 +0300
committerGitHub <noreply@github.com>2017-08-22 19:48:27 +0300
commit4135dc55b48e29f374f6a254064840430d1f0fe6 (patch)
tree9f34de4d2577fd6d941dce675729cee9064c5302 /src/System.Private.TypeLoader
parent61b3a728cfa82633e6112a291dfff261c16a7ef7 (diff)
parent9703b44feab11fc902b7d03c9595e238b40b69b4 (diff)
Merge pull request #4354 from dotnet/nmirror
Merge nmirror to master
Diffstat (limited to 'src/System.Private.TypeLoader')
-rw-r--r--src/System.Private.TypeLoader/src/Internal/Runtime/TypeLoader/CallConverterThunk.cs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/System.Private.TypeLoader/src/Internal/Runtime/TypeLoader/CallConverterThunk.cs b/src/System.Private.TypeLoader/src/Internal/Runtime/TypeLoader/CallConverterThunk.cs
index 1038c02b7..9d0f74dfa 100644
--- a/src/System.Private.TypeLoader/src/Internal/Runtime/TypeLoader/CallConverterThunk.cs
+++ b/src/System.Private.TypeLoader/src/Internal/Runtime/TypeLoader/CallConverterThunk.cs
@@ -263,11 +263,8 @@ namespace Internal.Runtime.TypeLoader
if (thunkKind == ReversePinvokeThunk)
{
// Special unsupported thunk kind. Similar behavior to the thunks generated by the delegate ILTransform for this thunk kind
-
- RuntimeTypeHandle thDummy;
- bool isOpenResolverDummy;
Action throwNotSupportedException = () => { throw new NotSupportedException(); };
- return RuntimeAugments.GetDelegateLdFtnResult(throwNotSupportedException, out thDummy, out isOpenResolverDummy);
+ return RuntimeAugments.GetDelegateLdFtnResult(throwNotSupportedException, out RuntimeTypeHandle _, out bool __, out bool ___);
}
RuntimeTypeHandle delegateType = RuntimeAugments.GetRuntimeTypeHandleFromObjectReference(delegateObject);