Skip to content

Commit 4337a5f

Browse files
committed
Use more standard SmallString<128> rather than SmallString<64>
1 parent b549db3 commit 4337a5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lld/ELF/InputFiles.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1775,7 +1775,7 @@ static bool dtltoAdjustMemberPathIfThinArchive(Ctx &ctx, StringRef archivePath,
17751775
if (!bufferOrErr->get()->getBuffer().starts_with(ThinArchiveMagic))
17761776
return false;
17771777

1778-
SmallString<64> resolvedPath;
1778+
SmallString<128> resolvedPath;
17791779
if (path::is_relative(memberPath)) {
17801780
resolvedPath = path::parent_path(archivePath);
17811781
path::append(resolvedPath, memberPath);

0 commit comments

Comments
 (0)