diff options
| author | Spp <spp@jorge.gr> | 2011-08-03 11:23:08 +0200 |
|---|---|---|
| committer | Spp <spp@jorge.gr> | 2011-08-03 11:23:08 +0200 |
| commit | e7327e7e94234467eef2826851f1f5bb46b44b48 (patch) | |
| tree | 94c445afe4a2cd72b14a986937738f44779de22b /src/server/game/Guilds | |
| parent | 8572d5d0e9f34a85a6404769bbb6d26e2c0f7b58 (diff) | |
Core: Fix compile without PCH and fix some warnings
Diffstat (limited to 'src/server/game/Guilds')
| -rwxr-xr-x | src/server/game/Guilds/Guild.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Guilds/Guild.h b/src/server/game/Guilds/Guild.h index c4e7e8ff8f0..f38d444bbb4 100755 --- a/src/server/game/Guilds/Guild.h +++ b/src/server/game/Guilds/Guild.h @@ -270,7 +270,7 @@ private: void SaveToDB(SQLTransaction& trans) const; void WritePacket(WorldPacket& data) const; - const uint64 GetGUID() const { return m_guid; } + uint64 GetGUID() const { return m_guid; } std::string GetName() const { return m_name; } uint32 GetAccountId() const { return m_accountId; } uint8 GetRankId() const { return m_rankId; } @@ -590,7 +590,7 @@ public: // Getters uint32 GetId() const { return m_id; } - const uint64 GetLeaderGUID() const { return m_leaderGuid; } + uint64 GetLeaderGUID() const { return m_leaderGuid; } const std::string& GetName() const { return m_name; } const std::string& GetMOTD() const { return m_motd; } const std::string& GetInfo() const { return m_info; } |
