summaryrefslogtreecommitdiff
path: root/chromium/services/tracing/public/cpp/perfetto/interning_index.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/services/tracing/public/cpp/perfetto/interning_index.h')
-rw-r--r--chromium/services/tracing/public/cpp/perfetto/interning_index.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/services/tracing/public/cpp/perfetto/interning_index.h b/chromium/services/tracing/public/cpp/perfetto/interning_index.h
index c28edd6f7c1..525cdb61658 100644
--- a/chromium/services/tracing/public/cpp/perfetto/interning_index.h
+++ b/chromium/services/tracing/public/cpp/perfetto/interning_index.h
@@ -47,7 +47,7 @@ class COMPONENT_EXPORT(TRACING_CPP) InterningIndex {
// InterningIndex<char*, std::string> index(1000, 100);
template <typename... SizeType>
InterningIndex(SizeType... max_entry_counts)
- : entry_caches_(std::make_tuple<IndexCache<ValueTypes>...>(max_entry_counts...)) {}
+ : entry_caches_(max_entry_counts...) {}
// Returns the entry for the given interned |value|, adding it to the index if
// it didn't exist previously or was evicted from the index. Entries may be