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/ILCompiler.Compiler/src/Compiler/CompilerGeneratedType.Sorting.cs')
-rw-r--r--src/ILCompiler.Compiler/src/Compiler/CompilerGeneratedType.Sorting.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/ILCompiler.Compiler/src/Compiler/CompilerGeneratedType.Sorting.cs b/src/ILCompiler.Compiler/src/Compiler/CompilerGeneratedType.Sorting.cs
deleted file mode 100644
index 99457b98f..000000000
--- a/src/ILCompiler.Compiler/src/Compiler/CompilerGeneratedType.Sorting.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-// Licensed to the .NET Foundation under one or more agreements.
-// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
-
-using System;
-
-using Internal.TypeSystem;
-
-namespace ILCompiler
-{
- // Functionality related to determinstic ordering of types and members
- internal sealed partial class CompilerGeneratedType : MetadataType
- {
- protected override int ClassCode => -1036681447;
-
- protected override int CompareToImpl(TypeDesc other, TypeSystemComparer comparer)
- {
- // Should be a singleton
- throw new NotSupportedException();
- }
- }
-}