[clang-tidy] use using instead of typedef

Found with modernize-use-using Signed-off-by: 's avatarRosen Penev <rosenp@gmail.com>
parent dea0cc16
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment