[9550] Hide unsafe templated ByteBuffer::append function only for internal use.

This commit is contained in:
VladimirMangos 2010-03-08 19:39:54 +03:00
parent 7dc6b131c8
commit ad9243ebd0
3 changed files with 9 additions and 8 deletions

View file

@ -51,7 +51,7 @@ std::string ObjectGuid::GetString() const
ByteBuffer& operator<< (ByteBuffer& buf, ObjectGuid const& guid)
{
buf.append(guid.GetRawValue());
buf << uint64(guid.GetRawValue());
return buf;
}