| 719 | void max_load_factor(float ml) { m_ht.max_load_factor(ml); } |
| 720 | |
| 721 | void rehash(size_type count) { m_ht.rehash(count); } |
| 722 | void reserve(size_type count) { m_ht.reserve(count); } |
| 723 | |
| 724 | /* |
nothing calls this directly
no outgoing calls
no test coverage detected