1
1
mirror of https://github.com/rui314/mold.git synced 2024-12-29 11:24:36 +03:00

temporary

This commit is contained in:
Rui Ueyama 2020-10-14 19:27:09 +09:00
parent 0acef289d9
commit 9758b1d96a

View File

@ -147,7 +147,7 @@ int main(int argc, char **argv) {
if (file->archive_name == "")
mark_live(file);
// Remove archive members that weren't used by any other
// Remove archive members that weren't used by any live
// object files.
files.erase(std::remove_if(files.begin(), files.end(),
[](ObjectFile *file) { return !file->is_alive; }),