mirror of
https://github.com/isledecomp/isle-portable.git
synced 2025-09-23 20:13:46 -04:00
Fix MxHashTableNode constructor (#1511)
This commit is contained in:
parent
40a21867e8
commit
5c67c26c3f
@ -13,7 +13,7 @@ class MxHashTableCursor;
|
|||||||
template <class T>
|
template <class T>
|
||||||
class MxHashTableNode {
|
class MxHashTableNode {
|
||||||
public:
|
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_obj = p_obj;
|
||||||
m_hash = p_hash;
|
m_hash = p_hash;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user