Skip to content

Commit

Permalink
remove another clang warning
Browse files Browse the repository at this point in the history
this also fixes a bug with topological torsions and client-provided invariants
  • Loading branch information
greglandrum committed Nov 6, 2013
1 parent a92b7bd commit 38ca41c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/GraphMol/Fingerprints/AtomPairs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ namespace RDKit{
} else {
// need to add to the atomCode here because we subtract off up to 2 below
// as part of the branch correction
atomCodes.push_back(((*atomInvariants)[(*atomItI)->getIdx()])<<1 + 1);
atomCodes.push_back(((*atomInvariants)[(*atomItI)->getIdx()]<<1) + 1);
}
}

Expand Down

0 comments on commit 38ca41c

Please sign in to comment.