You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-biology/maqview/files/maqview-0.2.5-gcc4.7.patch

17 lines
575 B

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); }