summaryrefslogtreecommitdiff
path: root/src/game-server/item.cpp
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-03-15 22:09:29 +0100
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-03-16 18:55:06 +0100
commit5e0fc928dca6f074cca25f3d76401d40523e9a7d (patch)
tree4f6692f6f075934e54777858918b588f344043c4 /src/game-server/item.cpp
parenta415bf0b866e5e3b052dffff9becf3990b45415c (diff)
downloadmanaserv-5e0fc928dca6f074cca25f3d76401d40523e9a7d.tar.gz
manaserv-5e0fc928dca6f074cca25f3d76401d40523e9a7d.tar.bz2
manaserv-5e0fc928dca6f074cca25f3d76401d40523e9a7d.tar.xz
manaserv-5e0fc928dca6f074cca25f3d76401d40523e9a7d.zip
Fixed remaining compiler warnings
These were unused parameters and one return type with an ignored 'const' qualifier. Reviewed-by: Yohann Ferreira
Diffstat (limited to 'src/game-server/item.cpp')
-rw-r--r--src/game-server/item.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game-server/item.cpp b/src/game-server/item.cpp
index 888c90ad..03aeebcb 100644
--- a/src/game-server/item.cpp
+++ b/src/game-server/item.cpp
@@ -47,13 +47,13 @@ void ItemEffectAttrMod::dispell(Being *itemUser)
mId, !mDuration);
}
-bool ItemEffectAutoAttack::apply(Being *itemUser)
+bool ItemEffectAutoAttack::apply(Being * /* itemUser */)
{
// TODO - STUB
return false;
}
-void ItemEffectAutoAttack::dispell(Being *itemUser)
+void ItemEffectAutoAttack::dispell(Being * /* itemUser */)
{
// TODO
}