diff options
author | megamage <none@none> | 2009-04-29 00:31:33 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-04-29 00:31:33 -0500 |
commit | a2b12f3ae8f237b1dfd33fae54d7bca0f8315b86 (patch) | |
tree | 4c8aab7710d9c8d3fdcb6ec07a6a86d0152f4237 /src/game/LootMgr.cpp | |
parent | 295b634ca691ff87e8451593e277211fcb02c929 (diff) |
[7732] Fixed compile warnings. Author: AlexDereka
--HG--
branch : trunk
Diffstat (limited to 'src/game/LootMgr.cpp')
-rw-r--r-- | src/game/LootMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/LootMgr.cpp b/src/game/LootMgr.cpp index ab086756616..267749fd5a4 100644 --- a/src/game/LootMgr.cpp +++ b/src/game/LootMgr.cpp @@ -151,7 +151,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; } } |