From 00ce22bd38cb9b2872c647e68342fffb664c5295 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Sat, 24 Oct 2020 02:56:25 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for ae4d4707 --- bit_manipulation/hamming_distance.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bit_manipulation/hamming_distance.cpp b/bit_manipulation/hamming_distance.cpp index f860b67fb..2f254f952 100644 --- a/bit_manipulation/hamming_distance.cpp +++ b/bit_manipulation/hamming_distance.cpp @@ -1,6 +1,8 @@ /** * @file - * @brief Returns the [Hamming distance](https://en.wikipedia.org/wiki/Hamming_distance) between two integers + * @brief Returns the [Hamming + * distance](https://en.wikipedia.org/wiki/Hamming_distance) between two + * integers * * @details * To find hamming distance between two integers, we take their xor, which will @@ -35,5 +37,5 @@ int main() { int b = 2; // 0010 in binary std::cout << "Hamming distance between " << a << " and " << b << " is " - << hamming_distance(a, b) << std::endl; + << hamming_distance(a, b) << std::endl; }