Skip to content

Commit

Permalink
Remove trailing space...
Browse files Browse the repository at this point in the history
  • Loading branch information
Xinok committed Jul 8, 2015
1 parent b97a6c2 commit d52fb87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion std/algorithm/sorting.d
Expand Up @@ -1196,7 +1196,7 @@ package(std) template HeapOps(alias less, Range)
--i;
}
}

//template because of @@@12410@@@
void heapify()(Range r)
{
Expand Down
2 changes: 1 addition & 1 deletion std/container/binaryheap.d
Expand Up @@ -61,7 +61,7 @@ if (isRandomAccessRange!(Store) || isRandomAccessRange!(typeof(Store.init[])))
import std.exception : enforce;
import std.algorithm : move, min, HeapOps, swapAt;
import std.typecons : RefCounted, RefCountedAutoInitialize;

alias percolate = HeapOps!(less, Store).percolate;
alias heapify = HeapOps!(less, Store).heapify;

Expand Down

0 comments on commit d52fb87

Please sign in to comment.