mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
Silences unused parameters
This commit is contained in:
@@ -58,6 +58,7 @@ long int *
|
||||
GenVarTable(double *vals,int nVals,long int *cuts,int nCuts,long int *starts,
|
||||
long int *results,int nPossibleRes,long int *varTable)
|
||||
{
|
||||
RDUNUSED_PARAM(vals);
|
||||
int nBins = nCuts + 1;
|
||||
int idx,i,iTab;
|
||||
|
||||
|
||||
@@ -71,6 +71,7 @@ namespace RDInfoTheory {
|
||||
}
|
||||
|
||||
void tester(InfoBitRanker *ranker, python::object bitVect) {
|
||||
RDUNUSED_PARAM(ranker);
|
||||
python::extract<SparseBitVect> sbvWorks(bitVect);
|
||||
if (sbvWorks.check()){
|
||||
SparseBitVect sv = python::extract<SparseBitVect>(bitVect);
|
||||
|
||||
Reference in New Issue
Block a user