fix: modernize-use-using clang-tidy warnings (#44806)

This commit is contained in:
Charles Kerr 2024-11-25 09:50:33 -06:00 committed by GitHub
parent 3c941c7e8f
commit 93f49d1189
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 48 additions and 52 deletions

View file

@ -25,7 +25,7 @@ namespace asar {
namespace {
typedef std::map<base::FilePath, std::shared_ptr<Archive>> ArchiveMap;
using ArchiveMap = std::map<base::FilePath, std::shared_ptr<Archive>>;
const base::FilePath::CharType kAsarExtension[] = FILE_PATH_LITERAL(".asar");