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
/// <summary> /// <summary>
/// An immutable mapping from keys of type long to values of type T. /// An immutable mapping from keys of type long to values of type T.
/// </summary> /// </summary>
struct LongDict<T> : IEnumerable<KeyValuePair<LongInterval, T>> struct LongDict<T> : IEnumerable<KeyValuePair<LongInterval, T>>
{ {
readonly LongInterval[] keys; readonly LongInterval[] keys;
readonly T[] values; readonly T[] values;

Loading…
Cancel
Save