We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0672950 commit 93065d1Copy full SHA for 93065d1
src/volume_calc.cpp
@@ -227,7 +227,7 @@ vector<VolumeCalculation::Result> VolumeCalculation::execute() const
227
228
// warn user if total sample size is greater than what the size_t type can
229
// represent
230
- if (total_samples > UINT64_T_MAX) {
+ if (total_samples == UINT64_T_MAX) {
231
warning("The number of samples has exceeded the type used to track hits. "
232
"Volume "
233
"results may be inaccurate.");
0 commit comments