aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclick <click@gonnamakeyou.com>2012-03-04 21:38:57 +0100
committerclick <click@gonnamakeyou.com>2012-03-04 21:38:57 +0100
commit45946e23bac57b1084d7bd42daff1445cb8957e2 (patch)
tree2a578856c705ec90eb7979823454d460017a9fa5
parent7cb07e48b3748a8ecd01678b60223f6875525d59 (diff)
Core: Adjust parameter output values to avoid excessive warning outputs on GCC and some other minor warnings
-rwxr-xr-xsrc/server/game/Entities/Unit/Unit.cpp2
-rw-r--r--src/server/scripts/Spells/spell_dk.cpp2
-rwxr-xr-xsrc/server/shared/Packets/ByteBuffer.h3
3 files changed, 3 insertions, 4 deletions
diff --git a/src/server/game/Entities/Unit/Unit.cpp b/src/server/game/Entities/Unit/Unit.cpp
index dbbb8acf759..3411d285b1e 100755
--- a/src/server/game/Entities/Unit/Unit.cpp
+++ b/src/server/game/Entities/Unit/Unit.cpp
@@ -16980,7 +16980,7 @@ void Unit::ChangeSeat(int8 seatId, bool next)
ASSERT(false);
}
-void Unit::ExitVehicle(Position const* exitPosition)
+void Unit::ExitVehicle(Position const* /*exitPosition*/)
{
//! This function can be called at upper level code to initialize an exit from the passenger's side.
if (!m_vehicle)
diff --git a/src/server/scripts/Spells/spell_dk.cpp b/src/server/scripts/Spells/spell_dk.cpp
index a6128591e71..e6db50f3f5a 100644
--- a/src/server/scripts/Spells/spell_dk.cpp
+++ b/src/server/scripts/Spells/spell_dk.cpp
@@ -769,7 +769,7 @@ class spell_dk_death_grip : public SpellScriptLoader
{
PrepareSpellScript(spell_dk_death_grip_SpellScript);
- void HandleDummy(SpellEffIndex effIndex)
+ void HandleDummy(SpellEffIndex /*effIndex*/)
{
int32 damage = GetEffectValue();
Position const* pos = GetTargetDest();
diff --git a/src/server/shared/Packets/ByteBuffer.h b/src/server/shared/Packets/ByteBuffer.h
index f018eb31bb4..35cb62240d8 100755
--- a/src/server/shared/Packets/ByteBuffer.h
+++ b/src/server/shared/Packets/ByteBuffer.h
@@ -33,7 +33,6 @@ class ByteBufferException
}
protected:
-
size_t Pos;
size_t Size;
size_t ValueSize;
@@ -52,7 +51,7 @@ class ByteBufferPositionException : public ByteBufferException
void PrintError() const
{
sLog->outError("Attempted to %s value with size: "SIZEFMTD" in ByteBuffer (pos: " SIZEFMTD " size: "SIZEFMTD") " ,
- ValueSize, (_add ? "put" : "get"), Pos, Size);
+ (_add ? "put" : "get"), ValueSize, Pos, Size);
}
private: