Fixes signed conversion issues (use rdcast)

This commit is contained in:
Brian Kelley
2015-10-18 15:16:38 -04:00
parent 23ef7fae3b
commit daa7e62258
19 changed files with 50 additions and 50 deletions

View File

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