From e01027fac808c6be4de467acdf7521146d31df22 Mon Sep 17 00:00:00 2001 From: Suyashjaiswal Date: Fri, 16 Oct 2020 14:07:23 +0530 Subject: [PATCH] Update sorting/radix_sort2.cpp Co-authored-by: David Leal --- sorting/radix_sort2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorting/radix_sort2.cpp b/sorting/radix_sort2.cpp index 4c9d314ae..28ecfc729 100644 --- a/sorting/radix_sort2.cpp +++ b/sorting/radix_sort2.cpp @@ -121,7 +121,7 @@ namespace sort * Function to test the above algorithm * @returns none */ - void test2(){ + static void test2(){ std::vector ar = {213,3214,123,111,112,142,133,132,32,12,113}; sort::radix_sort::radix obj(ar); obj.radix_sort();