summaryrefslogtreecommitdiffstats
path: root/streamingvisitors/src/tests/textutil/textutil.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'streamingvisitors/src/tests/textutil/textutil.cpp')
-rw-r--r--streamingvisitors/src/tests/textutil/textutil.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/streamingvisitors/src/tests/textutil/textutil.cpp b/streamingvisitors/src/tests/textutil/textutil.cpp
index 2a1390eaa01..160c734ee20 100644
--- a/streamingvisitors/src/tests/textutil/textutil.cpp
+++ b/streamingvisitors/src/tests/textutil/textutil.cpp
@@ -19,10 +19,10 @@ public:
Vector<T> & a(T v) { this->push_back(v); return *this; }
};
-typedef Vector<ucs4_t> UCS4V;
-typedef Vector<size_t> SizeV;
-typedef UTF8StringFieldSearcherBase SFSB;
-typedef FUTF8StrChrFieldSearcher FSFS;
+using UCS4V = Vector<ucs4_t>;
+using SizeV = Vector<size_t>;
+using SFSB = UTF8StringFieldSearcherBase;
+using FSFS = FUTF8StrChrFieldSearcher;
class TextUtilTest : public vespalib::TestApp
{