diff options
author | Shauren <shauren.trinity@gmail.com> | 2012-08-21 18:20:42 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2012-08-21 18:20:42 +0200 |
commit | 7dc26c7ff7a9dd7987866d75cd990fdeb5817a40 (patch) | |
tree | c8866fa7973fa90e46acee976571b910d0589a53 /src/server/scripts/Commands | |
parent | 7ccd254fdc3911f75f67c23da62576e32f936ac1 (diff) |
Core/Misc: Warning fixes
Diffstat (limited to 'src/server/scripts/Commands')
-rw-r--r-- | src/server/scripts/Commands/cs_quest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Commands/cs_quest.cpp b/src/server/scripts/Commands/cs_quest.cpp index b17b18a65d2..7e489a5781e 100644 --- a/src/server/scripts/Commands/cs_quest.cpp +++ b/src/server/scripts/Commands/cs_quest.cpp @@ -78,7 +78,7 @@ public: // check item starting quest (it can work incorrectly if added without item in inventory) ItemTemplateContainer const* itc = sObjectMgr->GetItemTemplateStore(); - ItemTemplateContainer::const_iterator result = find_if (itc->begin(), itc->end(), Finder<uint32, ItemTemplate>(entry, &ItemTemplate::StartQuest)); + ItemTemplateContainer::const_iterator result = find_if(itc->begin(), itc->end(), Finder<uint32, ItemTemplate>(entry, &ItemTemplate::StartQuest)); if (result != itc->end()) { |