fixed wrong words
This commit is contained in:
parent
14f5a8a9b3
commit
88e2e477b9
@ -317,7 +317,7 @@ protected:
|
||||
template <typename MT, typename MEQUALER>
|
||||
Node* heterofind_node (const MT& datum, qse_size_t hc) const
|
||||
{
|
||||
MEQUALER m_Equaler;
|
||||
MEQUALER mequaler;
|
||||
|
||||
qse_size_t head, tail;
|
||||
Node* np;
|
||||
@ -330,7 +330,7 @@ protected:
|
||||
do
|
||||
{
|
||||
T& t = np->value;
|
||||
if (m_Equaler(datum, t)) return np;
|
||||
if (mequaler (datum, t)) return np;
|
||||
if (np == this->nodes[tail]) break;
|
||||
np = np->getNextNode ();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user