Cleanup: remove unused method

This commit is contained in:
Jacques Lucke 2020-04-04 14:13:53 +02:00
parent 6fa904765a
commit fe98d8c0ea
1 changed files with 0 additions and 9 deletions

View File

@ -450,15 +450,6 @@ template<typename T, typename Allocator = GuardedAllocator> class StringMap {
}
ITER_SLOTS_END(offset);
}
template<typename ForwardT> void add__impl(StringRef key, ForwardT &&value)
{
this->ensure_can_add();
uint32_t hash = this->compute_string_hash(key);
ITER_SLOTS_BEGIN (hash, m_array, , item, offset) {
}
ITER_SLOTS_END(offset);
}
};
#undef ITER_SLOTS_BEGIN