diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-06-28 23:25:48 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-06-28 23:25:48 +0200 |
commit | 88a3344c49a7bd7fdca40639e2cd2245a9c209cd (patch) | |
tree | 02708f4b5d65f18a6ccce653abbd416687fd5f69 /src/server/scripts | |
parent | a3e34f562141e272fd64b44272fa58ea729bcffa (diff) |
Core: Fix more warnings
Diffstat (limited to 'src/server/scripts')
-rw-r--r-- | src/server/scripts/Spells/spell_mage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_mage.cpp b/src/server/scripts/Spells/spell_mage.cpp index 9ba53308ef1..d69978875f8 100644 --- a/src/server/scripts/Spells/spell_mage.cpp +++ b/src/server/scripts/Spells/spell_mage.cpp @@ -775,7 +775,7 @@ class spell_mage_ice_barrier : public SpellScriptLoader { PrepareAuraScript(spell_mage_ice_barrier_AuraScript); - void CalculateAmount(AuraEffect const* aurEff, int32& amount, bool& canBeRecalculated) + void CalculateAmount(AuraEffect const* /*aurEff*/, int32& amount, bool& canBeRecalculated) { canBeRecalculated = false; if (Unit* caster = GetCaster()) |