[7732] Fixed compile warnings.

This commit is contained in:
AlexDereka 2009-04-29 05:16:49 +04:00
parent 512c015dc2
commit cb72302a8a
3 changed files with 5 additions and 5 deletions

View file

@ -148,7 +148,7 @@ void LootStore::LoadLootTable()
tab = m_LootTemplates.find(entry);
if ( tab == m_LootTemplates.end() )
{
std::pair< LootTemplateMap::const_iterator, bool > pr = m_LootTemplates.insert(LootTemplateMap::value_type(entry, new LootTemplate));
std::pair< LootTemplateMap::iterator, bool > pr = m_LootTemplates.insert(LootTemplateMap::value_type(entry, new LootTemplate));
tab = pr.first;
}
}