mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
Fix MxHashTableNode constructor (#1511)
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user