diff --git a/lib/archive-file.h b/lib/archive-file.h index 35a7775ef0..9ce4a03003 100644 --- a/lib/archive-file.h +++ b/lib/archive-file.h @@ -75,7 +75,7 @@ struct ArHdr { } }; -template +template std::vector read_thin_archive_members(Context &ctx, MappedFile *mf) { u8 *begin = mf->data; @@ -123,7 +123,7 @@ read_thin_archive_members(Context &ctx, MappedFile *mf) { return vec; } -template +template std::vector read_fat_archive_members(Context &ctx, MappedFile *mf) { u8 *begin = mf->data; u8 *data = begin + 8; @@ -161,7 +161,7 @@ std::vector read_fat_archive_members(Context &ctx, MappedFile *mf) return vec; } -template +template std::vector read_archive_members(Context &ctx, MappedFile *mf) { std::string_view str = mf->get_contents(); if (str.starts_with("!\n"))