summaryrefslogtreecommitdiff
blob: 043208bb79b5f53e34bb682352d03334530b69f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 stdhash.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/stdhash.hh b/stdhash.hh
index eaf98af..f22c5a6 100644
--- a/stdhash.hh
+++ b/stdhash.hh
@@ -493,7 +493,7 @@ public:
 	inline bool insert(const keytype_t &key, const valtype_t &val) {
 		rehash();
 		hashint_t i;
-		int ret = direct_insert_aux(key, this->n_capacity, this->keys, this->flags, &i);
+		int ret = this->direct_insert_aux(key, this->n_capacity, this->keys, this->flags, &i);
 		vals[i] = val;
 		if (ret == 0) return true;
 		if (ret == 1) { ++(this->n_size); ++(this->n_occupied); }