From 4c85799c14937dc9d0bf3d4be6f10c6d03e54f99 Mon Sep 17 00:00:00 2001 From: ALEXks Date: Sat, 17 May 2025 18:51:35 +0300 Subject: [PATCH] version updated --- src/Utils/version.h | 2 +- src/VisualizerCalls/get_information.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Utils/version.h b/src/Utils/version.h index 2fc9463..e5e1b0e 100644 --- a/src/Utils/version.h +++ b/src/Utils/version.h @@ -1,3 +1,3 @@ #pragma once -#define VERSION_SPF "2419" +#define VERSION_SPF "2420" diff --git a/src/VisualizerCalls/get_information.cpp b/src/VisualizerCalls/get_information.cpp index fcab5f8..9d73c1b 100644 --- a/src/VisualizerCalls/get_information.cpp +++ b/src/VisualizerCalls/get_information.cpp @@ -766,15 +766,15 @@ int SPF_GetArrayDistribution(void*& context, int winHandler, short *options, sho else printInternalError(convertFileName(__FILE__).c_str(), __LINE__); - json allRegionsV = json::array(); + json regions = json::array(); for (auto& reg : parallelRegions) { json currReg = reg->toJson(); - allRegionsV.push_back(currReg); + regions.push_back(currReg); } json allRegions; - allRegions["allRegions"] = allRegionsV; + allRegions["allRegions"] = regions; string resVal = allRegions.dump(); copyStringToShort(result, resVal);