version updated
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define VERSION_SPF "2419"
|
#define VERSION_SPF "2420"
|
||||||
|
|||||||
@@ -766,15 +766,15 @@ int SPF_GetArrayDistribution(void*& context, int winHandler, short *options, sho
|
|||||||
else
|
else
|
||||||
printInternalError(convertFileName(__FILE__).c_str(), __LINE__);
|
printInternalError(convertFileName(__FILE__).c_str(), __LINE__);
|
||||||
|
|
||||||
json allRegionsV = json::array();
|
json regions = json::array();
|
||||||
for (auto& reg : parallelRegions)
|
for (auto& reg : parallelRegions)
|
||||||
{
|
{
|
||||||
json currReg = reg->toJson();
|
json currReg = reg->toJson();
|
||||||
allRegionsV.push_back(currReg);
|
regions.push_back(currReg);
|
||||||
}
|
}
|
||||||
|
|
||||||
json allRegions;
|
json allRegions;
|
||||||
allRegions["allRegions"] = allRegionsV;
|
allRegions["allRegions"] = regions;
|
||||||
|
|
||||||
string resVal = allRegions.dump();
|
string resVal = allRegions.dump();
|
||||||
copyStringToShort(result, resVal);
|
copyStringToShort(result, resVal);
|
||||||
|
|||||||
Reference in New Issue
Block a user