We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ea07bb commit 9d92d4dCopy full SHA for 9d92d4d
1 file changed
src/ScatterplotPlugin.cpp
@@ -244,13 +244,13 @@ ScatterplotPlugin::ScatterplotPlugin(const PluginFactory* factory) :
244
{
245
// Check to set whether the number of data points comprised throughout all clusters is the same number
246
// as the number of data points in the dataset we are trying to color
247
- int totalNumIndices = 0;
+ std::uint64_t totalNumIndices = 0;
248
for (const Cluster& cluster : candidateDataset->getClusters())
249
250
totalNumIndices += cluster.getIndices().size();
251
}
252
253
- int totalNumPoints = 0;
+ std::uint64_t totalNumPoints = 0;
254
if (_positionDataset->isDerivedData())
255
totalNumPoints = _positionSourceDataset->getFullDataset<Points>()->getNumPoints();
256
else
0 commit comments