summaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/sort
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahooinc.com>2022-12-21 12:27:11 +0000
committerGeir Storli <geirst@yahooinc.com>2022-12-21 12:28:17 +0000
commitb65ada009591fc728058f3993e31315ed592fe42 (patch)
tree58860909cfe3c3eb3cc7ac83800dc6e3b5dfa6d6 /searchlib/src/tests/sort
parent958cc2a655735beca465a080e202fdf35b1e0772 (diff)
Change from typedef to using in searchlib C++ code.
Diffstat (limited to 'searchlib/src/tests/sort')
-rw-r--r--searchlib/src/tests/sort/sortbenchmark.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/tests/sort/sortbenchmark.cpp b/searchlib/src/tests/sort/sortbenchmark.cpp
index 59d5f16d980..04832593b28 100644
--- a/searchlib/src/tests/sort/sortbenchmark.cpp
+++ b/searchlib/src/tests/sort/sortbenchmark.cpp
@@ -11,7 +11,7 @@ using vespalib::ConstBufferRef;
class Test : public vespalib::TestApp
{
public:
- typedef std::vector<uint32_t> V;
+ using V = std::vector<uint32_t>;
std::vector< std::vector<uint32_t> > _data;
int Main() override;
void generateVectors(size_t numVectors, size_t values);