From 7608314d86e236924191d8e317bab4bf66025a9f Mon Sep 17 00:00:00 2001 From: Yash Raj Singh <66232462+yashrajyash@users.noreply.github.com> Date: Mon, 3 Jan 2022 10:23:18 +0530 Subject: [PATCH] Update bit_manipulation/count_bits_flip.cpp Co-authored-by: David Leal --- bit_manipulation/count_bits_flip.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bit_manipulation/count_bits_flip.cpp b/bit_manipulation/count_bits_flip.cpp index 4946677f4..0ddda6b70 100644 --- a/bit_manipulation/count_bits_flip.cpp +++ b/bit_manipulation/count_bits_flip.cpp @@ -40,8 +40,8 @@ namespace count_bits_flip { * @returns total number of bits needed to be flipped to convert A to B */ std::uint64_t countBitsFlip( - std ::int64_t A, - std ::int64_t B) { // int64_t is preferred over int so that + std::int64_t A, + std::int64_t B) { // int64_t is preferred over int so that // no Overflow can be there. int count =