From 95f5ae48f1340a5553c7de9128b9fc4e77a45faf Mon Sep 17 00:00:00 2001 From: Tushar Khanduri <62638544+Tushar-K24@users.noreply.github.com> Date: Sat, 4 Sep 2021 00:06:25 +0530 Subject: [PATCH] Update sorting/selection_sort_recursive.cpp Co-authored-by: David Leal --- sorting/selection_sort_recursive.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/sorting/selection_sort_recursive.cpp b/sorting/selection_sort_recursive.cpp index 8b0791f15..233fe1634 100644 --- a/sorting/selection_sort_recursive.cpp +++ b/sorting/selection_sort_recursive.cpp @@ -39,7 +39,6 @@ namespace sorting { * sort](https://en.wikipedia.org/wiki/Selection_sort) * implementation using recursion */ - namespace find_min_index { /** * @brief The main function finds the index of the minimum element