Skip to content

Commit bf52aba

Browse files
committed
Fix to make sure the index used to access pointdata is computed in 64-bit.
Fix to make sure the index used to access pointdata is computed in 64-bit.
1 parent 112ed6b commit bf52aba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ExampleViewJS/src/ExampleViewJSPlugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ void ExampleViewJSPlugin::convertDataAndUpdateChart()
136136
auto dimNames = _currentDataSet->getDimensionNames();
137137
auto numDims = dimNames.size();
138138

139-
for (unsigned int pointId = 0; pointId < _currentDataSet->getNumPoints(); pointId++)
139+
for (std::uint64_t pointId = 0; pointId < _currentDataSet->getNumPoints(); pointId++)
140140
{
141141
entry.clear();
142142

0 commit comments

Comments
 (0)