From f8606e8fc1d3922e329097cd4aa12e9248e1839c Mon Sep 17 00:00:00 2001 From: Swastika Gupta <64654203+Swastyy@users.noreply.github.com> Date: Thu, 8 Jul 2021 09:25:39 +0530 Subject: [PATCH] Update bit_manipulation/count_of_set_bits.cpp Co-authored-by: David Leal --- bit_manipulation/count_of_set_bits.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bit_manipulation/count_of_set_bits.cpp b/bit_manipulation/count_of_set_bits.cpp index 9c6d888f1..6e4dfaa2f 100644 --- a/bit_manipulation/count_of_set_bits.cpp +++ b/bit_manipulation/count_of_set_bits.cpp @@ -64,6 +64,6 @@ static void test() { * @returns 0 on exit */ int main() { - test(); // execute the test + test(); // run self-test implementations return 0; }