mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
clang-tidy fixes for c81705eab6
This commit is contained in:
parent
c81705eab6
commit
abfe9ad081
@ -34,7 +34,7 @@ class chain {
|
|||||||
*
|
*
|
||||||
* @param mod modulus of the chain
|
* @param mod modulus of the chain
|
||||||
*/
|
*/
|
||||||
chain(int mod) : _mod(mod) {
|
explicit chain(int mod) : _mod(mod) {
|
||||||
while (mod--) head.push_back(nullptr);
|
while (mod--) head.push_back(nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user