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-30 02:48:01 +0300
committerGitHub <noreply@github.com>2017-08-30 02:48:01 +0300
commit2c5aba22764d8887db650d7ad7dba61a32841ca1 (patch)
treedbc6ed949de61e287ce7552873e9b7755b38a2c2 /src/System.Private.TypeLoader
parent6712392d651827527c5ae5cc05385d1f801aef54 (diff)
Buildtools update (#4414)
* Buildtools update to pickup slightly newer C# compiler (dotnet/buildtools#1650) * Revert "Make C# discards compile" This reverts commit 9703b44feab11fc902b7d03c9595e238b40b69b4.
Diffstat (limited to 'src/System.Private.TypeLoader')
-rw-r--r--src/System.Private.TypeLoader/src/Internal/Runtime/TypeLoader/CallConverterThunk.cs2
1 files changed, 1 insertions, 1 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 9d0f74dfa..ba58a629b 100644
--- a/src/System.Private.TypeLoader/src/Internal/Runtime/TypeLoader/CallConverterThunk.cs
+++ b/src/System.Private.TypeLoader/src/Internal/Runtime/TypeLoader/CallConverterThunk.cs
@@ -264,7 +264,7 @@ namespace Internal.Runtime.TypeLoader
{
// Special unsupported thunk kind. Similar behavior to the thunks generated by the delegate ILTransform for this thunk kind
Action throwNotSupportedException = () => { throw new NotSupportedException(); };
- return RuntimeAugments.GetDelegateLdFtnResult(throwNotSupportedException, out RuntimeTypeHandle _, out bool __, out bool ___);
+ return RuntimeAugments.GetDelegateLdFtnResult(throwNotSupportedException, out RuntimeTypeHandle _, out bool _, out bool _);
}
RuntimeTypeHandle delegateType = RuntimeAugments.GetRuntimeTypeHandleFromObjectReference(delegateObject);