forked from organicmaps/organicmaps
GCC build fix
This commit is contained in:
parent
3db26fe6db
commit
9ebb6fb4b9
1 changed files with 3 additions and 1 deletions
|
@ -60,7 +60,9 @@ namespace stats
|
|||
template <class TKey, class TSet>
|
||||
void AddToSet(TKey key, uint32_t sz, TSet & theSet)
|
||||
{
|
||||
theSet.insert(GeneralInfoKey<TKey>(key)).first->m_info.Add(sz);
|
||||
// GCC doesn't allow to modify set value ...
|
||||
const_cast<GeneralInfo &>(
|
||||
theSet.insert(GeneralInfoKey<TKey>(key)).first->m_info).Add(sz);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue