aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2016-07-16 17:11:59 +0200
committerShauren <shauren.trinity@gmail.com>2016-07-16 17:11:59 +0200
commit99ecf8e0fba8d1dc18bee9aa99cef69768f9d264 (patch)
tree5b2dd6061b0cd1e3253b85f3e8d62a47351f6097 /src
parent86275a397a478a30dad7e00af73029e2b15d4668 (diff)
Warning fix
Diffstat (limited to 'src')
-rw-r--r--src/server/game/Spells/Auras/SpellAuraEffects.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Spells/Auras/SpellAuraEffects.cpp b/src/server/game/Spells/Auras/SpellAuraEffects.cpp
index 278fccfdce6..3e02ba95137 100644
--- a/src/server/game/Spells/Auras/SpellAuraEffects.cpp
+++ b/src/server/game/Spells/Auras/SpellAuraEffects.cpp
@@ -4488,7 +4488,7 @@ void AuraEffect::HandleModRating(AuraApplication const* aurApp, uint8 mode, bool
target->ToPlayer()->ApplyRatingMod(CombatRating(rating), GetAmount(), apply);
}
-void AuraEffect::HandleModRatingFromStat(AuraApplication const* aurApp, uint8 mode, bool apply) const
+void AuraEffect::HandleModRatingFromStat(AuraApplication const* aurApp, uint8 mode, bool /*apply*/) const
{
if (!(mode & (AURA_EFFECT_HANDLE_CHANGE_AMOUNT_MASK | AURA_EFFECT_HANDLE_STAT)))
return;
@@ -4504,7 +4504,7 @@ void AuraEffect::HandleModRatingFromStat(AuraApplication const* aurApp, uint8 mo
target->ToPlayer()->UpdateRating(CombatRating(rating));
}
-void AuraEffect::HandleModRatingPct(AuraApplication const* aurApp, uint8 mode, bool apply) const
+void AuraEffect::HandleModRatingPct(AuraApplication const* aurApp, uint8 mode, bool /*apply*/) const
{
if (!(mode & (AURA_EFFECT_HANDLE_CHANGE_AMOUNT_MASK | AURA_EFFECT_HANDLE_STAT)))
return;