diff options
author | Spp <none@none> | 2010-04-19 09:26:37 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-04-19 09:26:37 +0200 |
commit | 74dd02d024007c3a09219177fabfe9010b1bce63 (patch) | |
tree | 041286f1a0a20c9714199b03c60808d3b7291e48 /src/game/ScriptedFollowerAI.cpp | |
parent | fdd8d2f3cc7108043f6bad036b994770f904866f (diff) |
Remove LOTS of compile warnings
--HG--
branch : trunk
Diffstat (limited to 'src/game/ScriptedFollowerAI.cpp')
-rw-r--r-- | src/game/ScriptedFollowerAI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/ScriptedFollowerAI.cpp b/src/game/ScriptedFollowerAI.cpp index 657b344469c..4f1543dc778 100644 --- a/src/game/ScriptedFollowerAI.cpp +++ b/src/game/ScriptedFollowerAI.cpp @@ -115,7 +115,7 @@ void FollowerAI::MoveInLineOfSight(Unit* pWho) } } -void FollowerAI::JustDied(Unit* pKiller) +void FollowerAI::JustDied(Unit* /*pKiller*/) { if (!HasFollowState(STATE_FOLLOW_INPROGRESS) || !m_uiLeaderGUID || !m_pQuestForFollow) return; @@ -244,7 +244,7 @@ void FollowerAI::UpdateAI(const uint32 uiDiff) UpdateFollowerAI(uiDiff); } -void FollowerAI::UpdateFollowerAI(const uint32 uiDiff) +void FollowerAI::UpdateFollowerAI(const uint32 /*uiDiff*/) { if (!UpdateVictim()) return; |