Skip to content

Commit ea3fbf8

Browse files
allevatoartemcm
authored andcommitted
Update options to include the new SwiftSynthesizeInterfaceOption flag.
This is the companion of swiftlang/swift#76872. I've reused the `SwiftIndentOption` constant, which was removed by swiftlang/swift#76577 (but Options.swift was never updated here to remove it).
1 parent 1bd6977 commit ea3fbf8

File tree

3 files changed

+62
-34
lines changed

3 files changed

+62
-34
lines changed

Sources/SwiftOptions/Option.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public struct OptionAttributes: OptionSet, Hashable {
2525
public static let doesNotAffectIncrementalBuild = OptionAttributes(rawValue: 0x20)
2626
public static let autolinkExtract = OptionAttributes(rawValue: 0x40)
2727
public static let moduleWrap = OptionAttributes(rawValue: 0x80)
28-
public static let indent = OptionAttributes(rawValue: 0x100)
28+
public static let synthesizeInterface = OptionAttributes(rawValue: 0x100)
2929
public static let argumentIsPath = OptionAttributes(rawValue: 0x200)
3030
public static let moduleInterface = OptionAttributes(rawValue: 0x400)
3131
public static let supplementaryOutput = OptionAttributes(rawValue: 0x800)

0 commit comments

Comments
 (0)