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:
authorTomas Rylek <trylek@microsoft.com>2015-12-03 04:26:05 +0300
committerTomas Rylek <trylek@microsoft.com>2015-12-03 04:26:05 +0300
commitecaf9c332abf189efb3f1d62fe72a6cc1ae74705 (patch)
tree180bf56e5aa9e9b81927dccd1e66d94033746f81 /src/System.Private.CoreLib
parenteea6ebd0a7154ca0d04f222ed8a97a6815a2bbd8 (diff)
Move reflection initialization eager cctor order above McgModuleManager as it turns out to have a dependency on it in debug mode
[tfs-changeset: 1553622]
Diffstat (limited to 'src/System.Private.CoreLib')
-rw-r--r--src/System.Private.CoreLib/src/System/Runtime/CompilerServices/EagerOrderedStaticConstructorAttribute.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/System.Private.CoreLib/src/System/Runtime/CompilerServices/EagerOrderedStaticConstructorAttribute.cs b/src/System.Private.CoreLib/src/System/Runtime/CompilerServices/EagerOrderedStaticConstructorAttribute.cs
index c03c7a6e4..9724543aa 100644
--- a/src/System.Private.CoreLib/src/System/Runtime/CompilerServices/EagerOrderedStaticConstructorAttribute.cs
+++ b/src/System.Private.CoreLib/src/System/Runtime/CompilerServices/EagerOrderedStaticConstructorAttribute.cs
@@ -34,12 +34,12 @@ namespace System.Runtime.CompilerServices
CompilerServicesClassConstructorRunnerCctor,
CompilerServicesClassConstructorRunner,
- // System.Private.Reflection.Execution
- ReflectionExecution,
-
// Interop
InteropHeap,
VtableIUnknown,
- McgModuleManager
+ McgModuleManager,
+
+ // System.Private.Reflection.Execution
+ ReflectionExecution,
}
}