Run clang-format against cpp (#4358)

This commit is contained in:
Eisuke Kawashima
2021-10-20 11:25:27 +09:00
committed by GitHub
parent 9243404f3d
commit 11532089de
200 changed files with 2806 additions and 2916 deletions

View File

@@ -101,13 +101,12 @@ unsigned int SubstructLibrary::addMol(const ROMol &m) {
CHECK_INVARIANT(idx == fpidx,
"#mols different than #fingerprints in SubstructLibrary");
}
if(keyholder.get() != nullptr) {
if (keyholder.get() != nullptr) {
unsigned int keyidx = keyholder->addMol(m);
CHECK_INVARIANT(idx == keyidx,
"#mols different than #keys in SubstructLibrary");
}
return idx;
}