summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2020-02-16 19:08:46 -0800
committerRosen Penev <rosenp@gmail.com>2020-02-16 19:22:32 -0800
commit351a4a80d2126762607e0419bfc6f8ae35397ffd (patch)
treed912d5ec3ab0821de3dd16997cedac447554dc8d /src
parentdea0cc165da9da5a04fa254e7f4a6a52699785c8 (diff)
[clang-tidy] use using instead of typedef
Found with modernize-use-using Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/db/Helpers.cxx2
1 files changed, 1 insertions, 1 deletions
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<const char *, StringLess> StringSet;
+using StringSet = std::set<const char *, StringLess>;
static void
StatsVisitTag(DatabaseStats &stats, StringSet &artists, StringSet &albums,