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

Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Charles Kerr <charles@charleskerr.com>
This commit is contained in:
trop[bot] 2024-11-25 13:53:59 -05:00 committed by GitHub
parent a30cf5b551
commit d8a7c57506
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");