diff --git a/include/scratch/bits/algorithm/make-heap.h b/include/scratch/bits/algorithm/make-heap.h index 4d36e6f..7267bf3 100644 --- a/include/scratch/bits/algorithm/make-heap.h +++ b/include/scratch/bits/algorithm/make-heap.h @@ -126,7 +126,7 @@ void pop_heap(RandomIt first, RandomIt last) pop_heap(first, last, [](auto&& a, auto&& b){ return a < b; }); } -template` +template void sort_heap(RandomIt first, RandomIt last) { sort_heap(first, last, [](auto&& a, auto&& b){ return a < b; });