[libcxx-commits] [libcxx] [libc++] Optimize copy construction and assignment of __tree (PR #151304)
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Jul 30 09:15:57 PDT 2025
================
@@ -29,6 +29,7 @@ struct support::adapt_operations<std::map<K, V>> {
int main(int argc, char** argv) {
support::associative_container_benchmarks<std::map<int, int>>("std::map<int, int>");
+ support::associative_container_benchmarks<std::map<std::string, int>>("std::map<std::string, int>");
----------------
ldionne wrote:
Should we do the same for `set` and the multi containers?
https://github.com/llvm/llvm-project/pull/151304
More information about the libcxx-commits
mailing list