Skip to content

Commit 4972089

Browse files
committed
Remove a string benchmark for multimap
1 parent 9f109f8 commit 4972089

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

libcxx/test/benchmarks/containers/associative/unordered_map.bench.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010

11-
#include <string>
1211
#include <unordered_map>
1312
#include <utility>
1413

@@ -29,8 +28,6 @@ struct support::adapt_operations<std::unordered_map<K, V>> {
2928

3029
int main(int argc, char** argv) {
3130
support::associative_container_benchmarks<std::unordered_map<int, int>>("std::unordered_map<int, int>");
32-
support::associative_container_benchmarks<std::unordered_map<std::string, int>>(
33-
"std::unordered_map<std::string, int>");
3431

3532
benchmark::Initialize(&argc, argv);
3633
benchmark::RunSpecifiedBenchmarks();

libcxx/test/benchmarks/containers/associative/unordered_multimap.bench.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010

11-
#include <string>
1211
#include <unordered_map>
1312

1413
#include "associative_container_benchmarks.h"
@@ -28,8 +27,6 @@ struct support::adapt_operations<std::unordered_multimap<K, V>> {
2827

2928
int main(int argc, char** argv) {
3029
support::associative_container_benchmarks<std::unordered_multimap<int, int>>("std::unordered_multimap<int, int>");
31-
support::associative_container_benchmarks<std::unordered_multimap<std::string, int>>(
32-
"std::unordered_multimap<std::string, int>");
3330

3431
benchmark::Initialize(&argc, argv);
3532
benchmark::RunSpecifiedBenchmarks();

0 commit comments

Comments
 (0)