From 941ae67ea34c436d9ea0fe9d6d9b9244fd6c773f Mon Sep 17 00:00:00 2001 From: Swastika Gupta <64654203+Swastyy@users.noreply.github.com> Date: Thu, 8 Jul 2021 09:25:32 +0530 Subject: [PATCH] Update bit_manipulation/count_of_set_bits.cpp Co-authored-by: David Leal --- bit_manipulation/count_of_set_bits.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/bit_manipulation/count_of_set_bits.cpp b/bit_manipulation/count_of_set_bits.cpp index ea4e423c5..9c6d888f1 100644 --- a/bit_manipulation/count_of_set_bits.cpp +++ b/bit_manipulation/count_of_set_bits.cpp @@ -27,7 +27,6 @@ namespace bitCount { * @param n is the number whose set bit will be counted * @returns count , the number set bit in binary representation of n */ - std::uint64_t countSetBits(int n) { int count = 0; // "count" variable is used to count number of 1's in binary // representation of the number