Use using declarations instead of typedef

PR #19458.
This commit is contained in:
Victor Chernyakin 2023-08-14 08:14:36 -07:00 committed by GitHub
parent 52fbb774a2
commit e4313d6651
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 5 deletions

View file

@ -276,7 +276,7 @@ struct StructName {};
enum EnumName {};
typedef QList<ClassName> SomeList;
using SomeList = QList<ClassName>;
namespace NamespaceName
{