Skip to content

Commit e1e49f5

Browse files
authored
Fix to make sure the index used to access pointdata is computed in 64bit (#50)
* Fix to make sure the index used to access pointdata is computed in 64-bit. * Removing brew update & brew upgrade
1 parent 112ed6b commit e1e49f5

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ jobs:
108108
if: startsWith(matrix.os, 'macos') && !endsWith(matrix.os, '13')
109109
shell: bash
110110
run: |
111-
brew update && brew upgrade
112111
brew install mono
113112
114113
# Use cached vcpkg packages if possible

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)