clang-tidy fixes for c81705eab6

This commit is contained in:
github-actions 2020-07-23 22:07:02 +00:00
parent c81705eab6
commit abfe9ad081

View File

@ -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);
} }