Merge remote-tracking branch 'isle/master'

This commit is contained in:
Christian Semmler 2025-05-20 11:43:28 -07:00
commit 9fc0306b58
No known key found for this signature in database
GPG Key ID: 086DAA1360BEEE5C

View File

@ -13,7 +13,7 @@ class MxHashTableCursor;
template <class T>
class MxHashTableNode {
public:
MxHashTableNode<T>(T p_obj, MxU32 p_hash, MxHashTableNode* p_prev, MxHashTableNode* p_next)
MxHashTableNode(T p_obj, MxU32 p_hash, MxHashTableNode* p_prev, MxHashTableNode* p_next)
{
m_obj = p_obj;
m_hash = p_hash;