Fix for OSX build (clang finding multiple overloads for operator==).

master
Nicky 2022-05-25 20:58:51 +02:00
parent 6244f77818
commit 04c76e96ab
1 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ void LFSimFeatureHandler::setSupportedFeatures()
if( extras.has("GridStatusRSS"))
{
mGridStatusRSS = extras["GridStatusRSS"];
mGridStatusRSS = extras["GridStatusRSS"].asString();
}
else
{
@ -115,7 +115,7 @@ void LFSimFeatureHandler::setSupportedFeatures()
}
if( extras.has("GridStatus"))
{
mGridStatusURL = extras["GridStatus"];
mGridStatusURL = extras["GridStatus"].asString();
}
else
{