Remove trailing space...

This commit is contained in:
Xinok 2015-07-08 11:23:59 -05:00
parent b97a6c2e7e
commit d52fb87ce7
2 changed files with 2 additions and 2 deletions

View file

@ -1196,7 +1196,7 @@ package(std) template HeapOps(alias less, Range)
--i; --i;
} }
} }
//template because of @@@12410@@@ //template because of @@@12410@@@
void heapify()(Range r) void heapify()(Range r)
{ {

View file

@ -61,7 +61,7 @@ if (isRandomAccessRange!(Store) || isRandomAccessRange!(typeof(Store.init[])))
import std.exception : enforce; import std.exception : enforce;
import std.algorithm : move, min, HeapOps, swapAt; import std.algorithm : move, min, HeapOps, swapAt;
import std.typecons : RefCounted, RefCountedAutoInitialize; import std.typecons : RefCounted, RefCountedAutoInitialize;
alias percolate = HeapOps!(less, Store).percolate; alias percolate = HeapOps!(less, Store).percolate;
alias heapify = HeapOps!(less, Store).heapify; alias heapify = HeapOps!(less, Store).heapify;