Strip spaces.

This commit is contained in:
Andrej Mitrovic 2014-04-26 21:13:39 +02:00
parent c61c1232b9
commit e549dd037b

View file

@ -9771,7 +9771,7 @@ private template HeapSortImpl(alias less, Range)
alias lessFun = binaryFun!less;
//template because of @@@12410@@@
void heapSort()(Range r)
void heapSort()(Range r)
{
// If true, there is nothing to do
if(r.length < 2) return;