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:
authorMichal Strehovský <michals@microsoft.com>2017-08-22 19:01:03 +0300
committerMichal Strehovský <michals@microsoft.com>2017-08-22 19:01:03 +0300
commit9703b44feab11fc902b7d03c9595e238b40b69b4 (patch)
tree1f1af967d27e041e4433cf585bb79b644a0bb234 /src/System.Private.TypeLoader
parent7c3b45be4ad1cf3b7b549b07f79079623c413247 (diff)
Make C# discards compile
Buildtools is inflicting a prerelease version of the C# compiler on us where the existing pattern doesn't compile.
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 ba58a629b..9d0f74dfa 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);