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>2016-12-09 20:32:40 +0300
committerGitHub <noreply@github.com>2016-12-09 20:32:40 +0300
commit86b64971b099ec3f605c1f3c186dce653ec11691 (patch)
treeac50374dd6628511c245c844e4688cdc781557e9 /src/ILCompiler.DependencyAnalysisFramework
parente80f0a3604a3073e896d19b76ca3f803307a687c (diff)
Make ordering of modifiers more consistent (#2318)
- s/readonly static/static readonly/ - s/static internal/internal static/ - s/static private/private static/ - s/static public/public static/ - s/static protected/protected static/ - s/unsafe static/static unsafe/ - s/unsafe extern/extern unsafe/ - s/internal protected/protected internal/
Diffstat (limited to 'src/ILCompiler.DependencyAnalysisFramework')
-rw-r--r--src/ILCompiler.DependencyAnalysisFramework/tests/TestGraph.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ILCompiler.DependencyAnalysisFramework/tests/TestGraph.cs b/src/ILCompiler.DependencyAnalysisFramework/tests/TestGraph.cs
index 21c9522d7..195ff91bd 100644
--- a/src/ILCompiler.DependencyAnalysisFramework/tests/TestGraph.cs
+++ b/src/ILCompiler.DependencyAnalysisFramework/tests/TestGraph.cs
@@ -16,7 +16,7 @@ namespace ILCompiler.DependencyAnalysisFramework.Tests
public class TestNode : ComputedStaticDependencyNode<TestGraph>
{
private readonly string _data;
- private readonly static CombinedDependencyListEntry[] s_emptyDynamicList = new CombinedDependencyListEntry[0];
+ private static readonly CombinedDependencyListEntry[] s_emptyDynamicList = new CombinedDependencyListEntry[0];
public TestNode(string data)
{