mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-11 11:48:37 +00:00
Remove 'using namespaces std' fixes #61
This commit is contained in:
@@ -3759,7 +3759,7 @@ int16 Client::CalcAAFocus(focusType type, uint32 aa_ID, uint16 spell_id)
|
||||
return 0;
|
||||
}
|
||||
|
||||
for (map<uint32, AA_Ability>::const_iterator iter = aa_effects[aa_ID].begin(); iter != aa_effects[aa_ID].end(); ++iter)
|
||||
for (std::map<uint32, AA_Ability>::const_iterator iter = aa_effects[aa_ID].begin(); iter != aa_effects[aa_ID].end(); ++iter)
|
||||
{
|
||||
effect = iter->second.skill_id;
|
||||
base1 = iter->second.base1;
|
||||
@@ -4642,7 +4642,7 @@ int16 Client::GetSympatheticFocusEffect(focusType type, uint16 spell_id) {
|
||||
uint8 SizeProcList = 0;
|
||||
uint8 MAX_SYMPATHETIC = 10;
|
||||
|
||||
vector<int> SympatheticProcList;
|
||||
std::vector<int> SympatheticProcList;
|
||||
|
||||
//item focus
|
||||
if (itembonuses.FocusEffects[type]){
|
||||
|
||||
Reference in New Issue
Block a user