vector size will generated as long int in 64bit system.
This patch to avoid it.
Change-Id: I0fb0415f1c430828cf1ec55a32402cf1f3c333b0
std::vector<std::shared_ptr<AccessibleNode>> ret{};
auto appsMap = AccessibleWatcher::getInstance()->getActiveAppMap();
- LOGI("activeAppMap.size: %d" , appsMap.size());
+ LOGI("activeAppMap.size: %d" , (int)appsMap.size());
for (auto itr = appsMap.begin(); itr != appsMap.end(); itr++)
{
auto activeWindows = itr->second->getActiveWindows();