summaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/dotproduct/dotproductbenchmark.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vespalib/src/tests/dotproduct/dotproductbenchmark.cpp')
-rw-r--r--vespalib/src/tests/dotproduct/dotproductbenchmark.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/tests/dotproduct/dotproductbenchmark.cpp b/vespalib/src/tests/dotproduct/dotproductbenchmark.cpp
index 51380028ffa..653ed9eb169 100644
--- a/vespalib/src/tests/dotproduct/dotproductbenchmark.cpp
+++ b/vespalib/src/tests/dotproduct/dotproductbenchmark.cpp
@@ -112,7 +112,7 @@ std::function<void(int64_t)> use_sum = [](int64_t) noexcept { };
class UnorderedSparseBenchmark : public SparseBenchmark
{
private:
- typedef hash_map<uint32_t, int32_t> map;
+ using map = hash_map<uint32_t, int32_t>;
public:
UnorderedSparseBenchmark(size_t numDocs, size_t numValues, size_t numQueryValues);
~UnorderedSparseBenchmark();