Skip to content

Commit 53975ba

Browse files
authored
Merge pull request #3873 from apple/lldb-Fix-constant-in-GetSwiftReadMetadataFromFileCache
[lldb] Fix constant in GetSwiftReadMetadataFromFileCache
2 parents 3a17673 + c1a5da6 commit 53975ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Target/Target.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4165,7 +4165,7 @@ bool TargetProperties::GetSwiftReadMetadataFromFileCache() const {
41654165
exp_property->GetValue()->GetAsProperties();
41664166
if (exp_values)
41674167
return exp_values->GetPropertyAtIndexAsBoolean(
4168-
nullptr, ePropertySwiftCreateModuleContextsInParallel, true);
4168+
nullptr, ePropertySwiftReadMetadataFromFileCache, true);
41694169

41704170
return true;
41714171
}

0 commit comments

Comments
 (0)