From 7fc150cea9279e9c5b15fb496832956b02c589e2 Mon Sep 17 00:00:00 2001 From: "tonghao.yuan" Date: Wed, 14 Oct 2020 21:28:53 +0800 Subject: [PATCH] fix: :bug: typo error --- include/scratch/bits/algorithm/make-heap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; });