Skip to content

Commit c25c214

Browse files
committed
AST: Only need 1 bit to store ModuleDecl's resilience strategy
1 parent 94c3f55 commit c25c214

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/swift/AST/Module.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ class ModuleDecl : public DeclContext, public TypeDecl {
206206
struct {
207207
unsigned TestingEnabled : 1;
208208
unsigned FailedToLoad : 1;
209-
unsigned ResilienceStrategy : 2;
209+
unsigned ResilienceStrategy : 1;
210210
} Flags;
211211

212212
ModuleDecl(Identifier name, ASTContext &ctx);

0 commit comments

Comments
 (0)