summaryrefslogtreecommitdiff
path: root/src/game-server/being.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/being.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/being.cpp')
-rw-r--r--src/game-server/being.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game-server/being.cpp b/src/game-server/being.cpp
index 408b8fc0..3fc0bab1 100644
--- a/src/game-server/being.cpp
+++ b/src/game-server/being.cpp
@@ -69,7 +69,7 @@ Being::Being(ThingType type):
#endif
}
-int Being::damage(Actor *source, const Damage &damage)
+int Being::damage(Actor * /* source */, const Damage &damage)
{
if (mAction == DEAD)
return 0;