[map][drape] Fix build with drape diagnostic.

This commit is contained in:
tatiana-yan 2020-03-20 10:31:05 +03:00 committed by Vladimir Byko-Ianko
parent 2ecb302f7e
commit 32eb82bba9

View file

@ -34,7 +34,7 @@ struct BenchmarkHandle
size_t m_regionsToDownloadCounter = 0;
#ifdef DRAPE_MEASURER_BENCHMARK
std::vector<std::pair<string, df::DrapeMeasurer::DrapeStatistic>> m_drapeStatistic;
std::vector<std::pair<std::string, df::DrapeMeasurer::DrapeStatistic>> m_drapeStatistic;
#endif
};
@ -131,14 +131,14 @@ void RunGraphicsBenchmark(Framework * framework)
auto stepElem = json_array_get(stepsNode, j);
if (stepElem == nullptr)
return;
string actionType;
std::string actionType;
FromJSONObject(stepElem, "actionType", actionType);
if (actionType == "waitForTime")
{
json_int_t timeInSeconds = 0;
FromJSONObject(stepElem, "time", timeInSeconds);
scenario.push_back(std::unique_ptr<ScenarioManager::Action>(
new ScenarioManager::WaitForTimeAction(seconds(timeInSeconds))));
new ScenarioManager::WaitForTimeAction(std::chrono::seconds(timeInSeconds))));
}
else if (actionType == "centerViewport")
{