GCC build fix

This commit is contained in:
Alex Zolotarev 2011-01-09 04:49:10 +02:00 committed by Alex Zolotarev
parent 3db26fe6db
commit 9ebb6fb4b9

View file

@ -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);
}
};