Benjamin Kaufmann
Benjamin Kaufmann
I'm currently trying to replace a libsoup based http client implementation with boost beast. However, beast's http response parser is (deliberately) very strict when it comes to RFC compliance. For...
There is a regression in `profiles/audio/transport.c:set_volume()`. In versions
`tsl::hopscotch_map` already provides heterogeneous overloads for lookup (e.g. via `find` or `at`) but there is currently no such support for adding elements (e.g. via `operator[]` or `try_emplace`). AFAIK, corresponding overloads...
* Add heterogeneous overloads for try_emplace, insert_or_assign, and operator[] to {b}hopscotch_map and hopscotch_hash. * Similar overloads were added to the standard associative containers with C++26 (see P2363R5).