| 26 | #include <dlib/hashtable.h> |
| 27 | |
| 28 | struct ReverseHashEntry |
| 29 | { |
| 30 | inline ReverseHashEntry(void* value, uint32_t length) : m_Value(value), m_Length (length) {} |
| 31 | void* m_Value; |
| 32 | uint16_t m_Length; |
| 33 | }; |
| 34 | |
| 35 | template<typename TABLE> |
| 36 | static void IncreaseTableCapacity(TABLE* table, uint32_t increment) |
no outgoing calls
no test coverage detected