From 351a4a80d2126762607e0419bfc6f8ae35397ffd Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sun, 16 Feb 2020 19:08:46 -0800 Subject: [PATCH] [clang-tidy] use using instead of typedef Found with modernize-use-using Signed-off-by: Rosen Penev --- src/db/Helpers.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/Helpers.cxx b/src/db/Helpers.cxx index adab44140..46d8a3683 100644 --- a/src/db/Helpers.cxx +++ b/src/db/Helpers.cxx @@ -34,7 +34,7 @@ struct StringLess { } }; -typedef std::set StringSet; +using StringSet = std::set; static void StatsVisitTag(DatabaseStats &stats, StringSet &artists, StringSet &albums,