diff options
author | Shauren <shauren.trinity@gmail.com> | 2014-09-16 20:57:11 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2014-09-16 20:57:11 +0200 |
commit | 9b933b4a291e377d4ae124eb8e3d2ba74b37f34f (patch) | |
tree | 4576751ec4b0a3caedfe60d1f9acf0bb65d47eea /src | |
parent | 878073d516c6c30e72c3f818863b2fd65055a657 (diff) |
Core/Misc: Removed explicit qualifier from ObjectGuid uint64 conversion operator
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Entities/Object/ObjectGuid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Entities/Object/ObjectGuid.h b/src/server/game/Entities/Object/ObjectGuid.h index ff356a621f3..30b7b1e0293 100644 --- a/src/server/game/Entities/Object/ObjectGuid.h +++ b/src/server/game/Entities/Object/ObjectGuid.h @@ -87,7 +87,7 @@ class ObjectGuid ObjectGuid(HighGuid hi, uint32 entry, uint32 counter) : m_guid(counter ? uint64(counter) | (uint64(entry) << 24) | (uint64(hi) << 48) : 0) {} ObjectGuid(HighGuid hi, uint32 counter) : m_guid(counter ? uint64(counter) | (uint64(hi) << 48) : 0) {} - explicit operator uint64() const { return m_guid; } + operator uint64() const { return m_guid; } PackedGuidReader ReadAsPacked() { return PackedGuidReader(*this); } void Set(uint64 guid) { m_guid = guid; } |