Core/Misc: Fix build warnings

Fix build warning reported by clang 3.6
This commit is contained in:
jackpoz
2015-07-04 19:28:11 +02:00
parent fec6523ab2
commit 6681b3600c

View File

@@ -735,7 +735,7 @@ class GameObject : public WorldObject, public GridObject<GameObject>, public Map
void SetGoAnimProgress(uint8 animprogress) { SetByteValue(GAMEOBJECT_BYTES_1, 3, animprogress); }
static void SetGoArtKit(uint8 artkit, GameObject* go, uint32 lowguid = 0);
void SetPhaseMask(uint32 newPhaseMask, bool update);
void SetPhaseMask(uint32 newPhaseMask, bool update) override;
void EnableCollision(bool enable);
void Use(Unit* user);