summaryrefslogtreecommitdiff
path: root/node/Hashtable.hpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2015-10-30 15:54:40 -0700
committerAdam Ierymenko <adam.ierymenko@gmail.com>2015-10-30 15:54:40 -0700
commit1b4cc4af5c7c0e47f73f3728ca36dc665d0e3224 (patch)
treedd314c01c1b48ace25c093fbd4345fa0112377bb /node/Hashtable.hpp
parent7382c328daa33b5ff21baf78ee022f23092cda3b (diff)
downloadinfinitytier-1b4cc4af5c7c0e47f73f3728ca36dc665d0e3224.tar.gz
infinitytier-1b4cc4af5c7c0e47f73f3728ca36dc665d0e3224.zip
Fix evil bug, and instrument/assert on some other stuff, and a bit of cleanup.
Diffstat (limited to 'node/Hashtable.hpp')
-rw-r--r--node/Hashtable.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/node/Hashtable.hpp b/node/Hashtable.hpp
index 1d8d9e5d..e3512fef 100644
--- a/node/Hashtable.hpp
+++ b/node/Hashtable.hpp
@@ -322,7 +322,6 @@ public:
b->next = _t[bidx];
_t[bidx] = b;
++_s;
-
return b->v;
}
@@ -351,7 +350,6 @@ public:
b->next = _t[bidx];
_t[bidx] = b;
++_s;
-
return b->v;
}