fix(Core/Common): Container fixes use after free (#21460)
This commit is contained in:
parent
75752880e2
commit
a05833eeed
4 changed files with 29 additions and 9 deletions
|
|
@ -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 };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue