mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-04-01 17:52:40 +08:00
clang-tidy fixes for c81705eab6
This commit is contained in:
@@ -34,7 +34,7 @@ class chain {
|
||||
*
|
||||
* @param mod modulus of the chain
|
||||
*/
|
||||
chain(int mod) : _mod(mod) {
|
||||
explicit chain(int mod) : _mod(mod) {
|
||||
while (mod--) head.push_back(nullptr);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user