| 401 | // Tricky way to set value of type with const fields |
| 402 | template <class... Args> |
| 403 | void SetValue(value_type& bucket, Args&&... args) { |
| 404 | bucket.~value_type(); |
| 405 | new (&bucket) value_type(std::forward<Args>(args)...); |
| 406 | } |
| 407 | |
| 408 | template <class... Args> |
| 409 | void SetValue(size_type idx, Args&&... args) { |
nothing calls this directly
no test coverage detected