diff options
| author | Spp <spp@jorge.gr> | 2011-09-28 11:11:38 +0200 |
|---|---|---|
| committer | Spp <spp@jorge.gr> | 2011-09-28 11:11:38 +0200 |
| commit | cc06c4188742578fef36917a33a09cb831dcb469 (patch) | |
| tree | eb9707ed61817946bacbf2040381f40ddc27187f /src/server/scripts | |
| parent | 852ffcc139873643da335155fddde10704aaec4b (diff) | |
Core: Move FormationMgr to namespace
Also...
- Warning fixes
- Make Singleton constructors private
Diffstat (limited to 'src/server/scripts')
| -rw-r--r-- | src/server/scripts/Northrend/Ulduar/ulduar/boss_flame_leviathan.cpp | 2 | ||||
| -rw-r--r-- | src/server/scripts/Northrend/Ulduar/ulduar/instance_ulduar.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Northrend/Ulduar/ulduar/boss_flame_leviathan.cpp b/src/server/scripts/Northrend/Ulduar/ulduar/boss_flame_leviathan.cpp index 256b03c7754..aa9516d479f 100644 --- a/src/server/scripts/Northrend/Ulduar/ulduar/boss_flame_leviathan.cpp +++ b/src/server/scripts/Northrend/Ulduar/ulduar/boss_flame_leviathan.cpp @@ -1666,7 +1666,7 @@ class spell_pursue : public SpellScriptLoader caster->AI()->EnterEvadeMode(); } - void HandleScript(SpellEffIndex eff) + void HandleScript(SpellEffIndex /*eff*/) { Creature* caster = GetCaster()->ToCreature(); if (!caster) diff --git a/src/server/scripts/Northrend/Ulduar/ulduar/instance_ulduar.cpp b/src/server/scripts/Northrend/Ulduar/ulduar/instance_ulduar.cpp index e1c64499df2..251a18e98f2 100644 --- a/src/server/scripts/Northrend/Ulduar/ulduar/instance_ulduar.cpp +++ b/src/server/scripts/Northrend/Ulduar/ulduar/instance_ulduar.cpp @@ -509,7 +509,7 @@ class instance_ulduar : public InstanceMapScript } } - void SetData64(uint32 type, uint64 data) + void SetData64(uint32 /*type*/, uint64 /*data*/) { } |
