From de7d42430c7e3ea2e77e9a434c57b40f096e2c4b Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Thu, 8 Jul 2021 03:56:27 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for f8606e8f --- bit_manipulation/count_of_set_bits.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/bit_manipulation/count_of_set_bits.cpp b/bit_manipulation/count_of_set_bits.cpp index 6e4dfaa2f..b7ed0680a 100644 --- a/bit_manipulation/count_of_set_bits.cpp +++ b/bit_manipulation/count_of_set_bits.cpp @@ -1,6 +1,8 @@ /** * @file - * @brief Implementation to [count sets bits](https://www.geeksforgeeks.org/count-set-bits-in-an-integer/) in an integer. + * @brief Implementation to [count sets + * bits](https://www.geeksforgeeks.org/count-set-bits-in-an-integer/) in an + * integer. * * @details * Time Complexity :- O(log n) @@ -19,7 +21,9 @@ namespace bit_manipulation { /** * @namespace bitCount - * @brief Functions for the [count sets bits](https://www.geeksforgeeks.org/count-set-bits-in-an-integer/) implementation + * @brief Functions for the [count sets + * bits](https://www.geeksforgeeks.org/count-set-bits-in-an-integer/) + * implementation */ namespace bitCount { /**