Skip to content

Commit 3be2302

Browse files
authored
Merge pull request #63119 from keith/ks/add-default-value-for-explicitmoduleinfo-isframework
Add default value for ExplicitModuleInfo isFramework
2 parents 87d3547 + 3acd63c commit 3be2302

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/swift/Frontend/ModuleInterfaceLoader.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ struct ExplicitModuleInfo {
182182
// Path of the .swiftsourceinfo file.
183183
std::string moduleSourceInfoPath;
184184
// A flag that indicates whether this module is a framework
185-
bool isFramework;
185+
bool isFramework = false;
186186
// A flag that indicates whether this module is a system module
187187
// Set the default to be false.
188188
bool isSystem = false;

0 commit comments

Comments
 (0)