mirror of
https://github.com/isledecomp/isle-portable.git
synced 2025-09-22 11:31:57 -04:00
Fix MxHashTableNode constructor (#1511)
This commit is contained in:
parent
40a21867e8
commit
5c67c26c3f
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user