From 74dd02d024007c3a09219177fabfe9010b1bce63 Mon Sep 17 00:00:00 2001 From: Spp Date: Mon, 19 Apr 2010 09:26:37 +0200 Subject: Remove LOTS of compile warnings --HG-- branch : trunk --- src/scripts/examples/example_misc.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/scripts/examples/example_misc.cpp') diff --git a/src/scripts/examples/example_misc.cpp b/src/scripts/examples/example_misc.cpp index e26220bfbb3..3c96cc0bae7 100644 --- a/src/scripts/examples/example_misc.cpp +++ b/src/scripts/examples/example_misc.cpp @@ -29,20 +29,20 @@ enum eSay SAY_HI = -1999925 }; -bool AT_example_areatrigger(Player* pPlayer, const AreaTriggerEntry *pAt) +bool AT_example_areatrigger(Player* pPlayer, const AreaTriggerEntry * /*pAt*/) { DoScriptText(SAY_HI, pPlayer); return true; } extern void LoadDatabase(); -bool ItemUse_example_item(Player* pPlayer, Item* pItem, SpellCastTargets const& scTargets) +bool ItemUse_example_item(Player* /*pPlayer*/, Item* /*pItem*/, SpellCastTargets const& /*scTargets*/) { sScriptMgr.LoadDatabase(); return true; } -bool GOHello_example_go_teleporter(Player* pPlayer, GameObject* pGo) +bool GOHello_example_go_teleporter(Player* pPlayer, GameObject* /*pGo*/) { pPlayer->TeleportTo(0, 1807.07f, 336.105f, 70.3975f, 0.0f); return false; -- cgit v1.2.3