Skip to content

Commit 42ad91e

Browse files
authored
Fix call to templated readFullContextDescriptor method (#79936)
1 parent c882b57 commit 42ad91e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/swift/Remote/MetadataReader.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1521,7 +1521,7 @@ class MetadataReader {
15211521
MemoryReader::ReadBytesResult &ptr) {
15221522
// Read the full base descriptor if it's bigger than what we have so far.
15231523
if (sizeof(DescriptorTy) > sizeof(TargetContextDescriptor<Runtime>)) {
1524-
ptr = Reader->readObj<DescriptorTy>(address);
1524+
ptr = Reader->template readObj<DescriptorTy>(address);
15251525
if (!ptr)
15261526
return false;
15271527
}

0 commit comments

Comments
 (0)