From ae4d47071f275d2da607a6dac09792d83d417b2d Mon Sep 17 00:00:00 2001 From: Ravishankar Joshi <21024229+ravibitsgoa@users.noreply.github.com> Date: Sat, 24 Oct 2020 08:25:37 +0530 Subject: [PATCH] Update bit_manipulation/hamming_distance.cpp Co-authored-by: David Leal --- bit_manipulation/hamming_distance.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/bit_manipulation/hamming_distance.cpp b/bit_manipulation/hamming_distance.cpp index b47e81ff2..f860b67fb 100644 --- a/bit_manipulation/hamming_distance.cpp +++ b/bit_manipulation/hamming_distance.cpp @@ -11,7 +11,6 @@ */ #include /// for io operations -using std::cout, std::endl; unsigned int bitCount(unsigned int value) { unsigned int count = 0;