Browse Source

As with every new file: use tabs.

Why can't VS respect .editorconfig when creating new files?
pull/863/head
Daniel Grunwald 8 years ago
parent
commit
9be7dedbd4
  1. 4
      ICSharpCode.Decompiler/Util/LongDict.cs

4
ICSharpCode.Decompiler/Util/LongDict.cs

@ -35,8 +35,8 @@ namespace ICSharpCode.Decompiler.Util @@ -35,8 +35,8 @@ namespace ICSharpCode.Decompiler.Util
/// <summary>
/// An immutable mapping from keys of type long to values of type T.
/// </summary>
struct LongDict<T> : IEnumerable<KeyValuePair<LongInterval, T>>
{
struct LongDict<T> : IEnumerable<KeyValuePair<LongInterval, T>>
{
readonly LongInterval[] keys;
readonly T[] values;

Loading…
Cancel
Save