diff --git a/include/gp/algorithms/sort.hpp b/include/gp/algorithms/sort.hpp index f9b122b..8597d22 100644 --- a/include/gp/algorithms/sort.hpp +++ b/include/gp/algorithms/sort.hpp @@ -29,7 +29,7 @@ namespace gp { } return false; }; - + /* template void quick_sort(it_t first, it_t last, pred predicate = pred{}) { using __details::sort2; @@ -45,7 +45,7 @@ namespace gp { gp::__details::quick_sort(first, pivot, predicate); gp::__details::quick_sort(pivot, last, predicate); } - + */ template void bubble_sort(it_t first, it_t last, pred predicate = pred{}) { if(last - first <= 2) {