summaryrefslogtreecommitdiff
path: root/node/Hashtable.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/Hashtable.hpp')
-rw-r--r--node/Hashtable.hpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/node/Hashtable.hpp b/node/Hashtable.hpp
index 95a8e74f..e5496592 100644
--- a/node/Hashtable.hpp
+++ b/node/Hashtable.hpp
@@ -42,11 +42,6 @@ namespace ZeroTier {
/**
* A minimal hash table implementation for the ZeroTier core
- *
- * This is not a drop-in replacement for STL containers, and has several
- * limitations. Keys can be uint64_t or an object, and if the latter they
- * must implement a method called hashCode() that returns an unsigned long
- * value that is evenly distributed.
*/
template<typename K,typename V>
class Hashtable