summaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/queryeval/blueprint/mysearch.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/tests/queryeval/blueprint/mysearch.h')
-rw-r--r--searchlib/src/tests/queryeval/blueprint/mysearch.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/searchlib/src/tests/queryeval/blueprint/mysearch.h b/searchlib/src/tests/queryeval/blueprint/mysearch.h
index 23cfc8583cd..6c91a23e80b 100644
--- a/searchlib/src/tests/queryeval/blueprint/mysearch.h
+++ b/searchlib/src/tests/queryeval/blueprint/mysearch.h
@@ -12,8 +12,8 @@ namespace search::queryeval {
class MySearch : public MultiSearch
{
public:
- typedef search::fef::TermFieldMatchDataArray TFMDA;
- typedef search::fef::MatchData MatchData;
+ using TFMDA = search::fef::TermFieldMatchDataArray;
+ using MatchData = search::fef::MatchData;
private:
vespalib::string _tag;
@@ -103,7 +103,7 @@ public:
class MyLeaf : public SimpleLeafBlueprint
{
- typedef search::fef::TermFieldMatchDataArray TFMDA;
+ using TFMDA = search::fef::TermFieldMatchDataArray;
bool _got_global_filter;
public: