mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-15 16:26:08 +00:00
fix(Core/Common): Container fixes use after free (#21460)
This commit is contained in:
@@ -64,6 +64,11 @@ struct Position
|
||||
return !(operator==(a));
|
||||
}
|
||||
|
||||
inline bool operator!=(Position const& a) const
|
||||
{
|
||||
return !(operator==(a));
|
||||
}
|
||||
|
||||
operator G3D::Vector3() const
|
||||
{
|
||||
return { m_positionX, m_positionY, m_positionZ };
|
||||
|
||||
Reference in New Issue
Block a user