We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e80069 commit 60529b0Copy full SHA for 60529b0
1 file changed
src/server/game/Entities/Object/ObjectGuid.h
@@ -299,8 +299,8 @@ class TC_GAME_API PackedGuid
299
friend TC_GAME_API ByteBuffer& operator<<(ByteBuffer& buf, PackedGuid const& guid);
300
301
public:
302
- explicit PackedGuid() : _packedSize(1), _packedGuid() { }
303
- explicit PackedGuid(ObjectGuid guid) : _packedSize(1), _packedGuid() { Set(guid); }
+ explicit PackedGuid() : _packedSize(1), _packedGuid({}) { }
+ explicit PackedGuid(ObjectGuid guid) : _packedSize(1), _packedGuid({}) { Set(guid); }
304
305
void Set(ObjectGuid guid);
306
0 commit comments