Skip to content

Commit

Permalink
fix sdist compilation failure
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbkoch committed Dec 27, 2024
1 parent d1d5a9b commit 706d07a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/libebm/PartitionOneDimensionalBoosting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,7 @@ template<bool bHessian, size_t cCompilerScores> class PartitionOneDimensionalBoo
pMissingBin = pBin;
pBin = IndexBin(pBin, cBytesPerBin);
} else if(TermBoostFlags_MissingSeparate & flags) {
cSamplesTotal -= aSumBins->GetCountSamples();
cSamplesTotal -= static_cast<size_t>(aSumBins->GetCountSamples());
weightTotal -= aSumBins->GetWeight();
aSumBins = IndexBin(aSumBins, cBytesPerBin);

Expand Down

0 comments on commit 706d07a

Please sign in to comment.