summaryrefslogtreecommitdiffstats
path: root/juk/stringhash.h
diff options
context:
space:
mode:
Diffstat (limited to 'juk/stringhash.h')
-rw-r--r--juk/stringhash.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/juk/stringhash.h b/juk/stringhash.h
index 11ac3d7b..bf866958 100644
--- a/juk/stringhash.h
+++ b/juk/stringhash.h
@@ -42,7 +42,7 @@ public:
/**
* Returns true if the set contains the item \a value.
*/
- bool tqcontains(T value) const;
+ bool contains(T value) const;
/**
* Removes an item. Returns true if the item was present and false if not.
@@ -227,7 +227,7 @@ bool Hash<T>::insert(T value)
}
template <class T>
-bool Hash<T>::tqcontains(T value) const
+bool Hash<T>::contains(T value) const
{
int h = hash(value);
Node *i = m_table[h];