From bf52abaa69a7f37263e37908e126a0c5f96b0d2d Mon Sep 17 00:00:00 2001 From: jeggermont Date: Mon, 30 Mar 2026 16:42:03 +0200 Subject: [PATCH 1/2] 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. --- ExampleViewJS/src/ExampleViewJSPlugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ExampleViewJS/src/ExampleViewJSPlugin.cpp b/ExampleViewJS/src/ExampleViewJSPlugin.cpp index 1a3ec90..6aedd34 100644 --- a/ExampleViewJS/src/ExampleViewJSPlugin.cpp +++ b/ExampleViewJS/src/ExampleViewJSPlugin.cpp @@ -136,7 +136,7 @@ void ExampleViewJSPlugin::convertDataAndUpdateChart() auto dimNames = _currentDataSet->getDimensionNames(); auto numDims = dimNames.size(); - for (unsigned int pointId = 0; pointId < _currentDataSet->getNumPoints(); pointId++) + for (std::uint64_t pointId = 0; pointId < _currentDataSet->getNumPoints(); pointId++) { entry.clear(); From e9393ce26fd5a08ac0d60ce6e41658c3b8f8d868 Mon Sep 17 00:00:00 2001 From: jeggermont Date: Mon, 30 Mar 2026 17:22:34 +0200 Subject: [PATCH 2/2] Removing brew update & brew upgrade since it seems to cause build problems. Removing brew update & brew upgrade since it seems to cause build problems. --- .github/workflows/build.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c744e3a..a32b9ba 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -108,7 +108,6 @@ jobs: if: startsWith(matrix.os, 'macos') && !endsWith(matrix.os, '13') shell: bash run: | - brew update && brew upgrade brew install mono # Use cached vcpkg packages if possible