mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-05-06 04:53:30 +08:00
clang-format and clang-tidy fixes for f8606e8f
This commit is contained in:
@@ -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 {
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user