Skip to content

Commit 9d92d4d

Browse files
committed
More uint64
1 parent 3ea07bb commit 9d92d4d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ScatterplotPlugin.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,13 +244,13 @@ ScatterplotPlugin::ScatterplotPlugin(const PluginFactory* factory) :
244244
{
245245
// Check to set whether the number of data points comprised throughout all clusters is the same number
246246
// as the number of data points in the dataset we are trying to color
247-
int totalNumIndices = 0;
247+
std::uint64_t totalNumIndices = 0;
248248
for (const Cluster& cluster : candidateDataset->getClusters())
249249
{
250250
totalNumIndices += cluster.getIndices().size();
251251
}
252252

253-
int totalNumPoints = 0;
253+
std::uint64_t totalNumPoints = 0;
254254
if (_positionDataset->isDerivedData())
255255
totalNumPoints = _positionSourceDataset->getFullDataset<Points>()->getNumPoints();
256256
else

0 commit comments

Comments
 (0)