Move ctor initializers to their own line.
This commit is contained in:
@@ -28,9 +28,8 @@ namespace OpenRA.Primitives
|
||||
readonly IComparer<T> comparer;
|
||||
int level, index;
|
||||
|
||||
public PriorityQueue() : this(Comparer<T>.Default)
|
||||
{
|
||||
}
|
||||
public PriorityQueue()
|
||||
: this(Comparer<T>.Default) { }
|
||||
|
||||
public PriorityQueue(IComparer<T> comparer)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user