mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
Fixes signed conversion issues (use rdcast)
This commit is contained in:
@@ -150,7 +150,7 @@ namespace RDPickers {
|
||||
bool useCache
|
||||
) {
|
||||
std::vector<const ExplicitBitVect *> bvs(poolSize);
|
||||
for(unsigned int i=0;i<poolSize;++i){
|
||||
for(int i=0;i<poolSize;++i){
|
||||
bvs[i]=python::extract<const ExplicitBitVect *>(objs[i]);
|
||||
}
|
||||
pyBVFunctor<ExplicitBitVect> functor(bvs,TANIMOTO,useCache);
|
||||
|
||||
Reference in New Issue
Block a user