forked from organicmaps/organicmaps
Fix compilation on Mac.
This commit is contained in:
parent
4564e25c9d
commit
28eb4e6831
1 changed files with 2 additions and 2 deletions
|
@ -67,14 +67,14 @@ static string AppendZeroIfNeeded(string const & macAddrPart)
|
|||
string const rawBssid = [net.bssid UTF8String];
|
||||
if (!rawBssid.empty())
|
||||
{
|
||||
strings::TokenizeIterator tokIt(rawBssid, ":");
|
||||
strings::SimpleTokenizer tokIt(rawBssid, ":");
|
||||
apn.m_bssid = AppendZeroIfNeeded(*tokIt);
|
||||
do
|
||||
{
|
||||
++tokIt;
|
||||
apn.m_bssid += "-";
|
||||
apn.m_bssid += AppendZeroIfNeeded(*tokIt);
|
||||
} while (!tokIt.is_last());
|
||||
} while (!tokIt.IsLast());
|
||||
}
|
||||
m_accessPoints.push_back(apn);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue