mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
[xcodegen] Avoid tracking inferArgs per target/source
This is unnecessary since we never configure it per target, just check the global setting.
This commit is contained in:
@@ -15,16 +15,13 @@ struct ClangTargetSource {
|
||||
var name: String
|
||||
var path: RelativePath
|
||||
var mayHaveUnbuildableFiles: Bool
|
||||
var inferArgs: Bool
|
||||
|
||||
init(
|
||||
at path: RelativePath, named name: String,
|
||||
mayHaveUnbuildableFiles: Bool,
|
||||
inferArgs: Bool
|
||||
mayHaveUnbuildableFiles: Bool
|
||||
) {
|
||||
self.name = name
|
||||
self.path = path
|
||||
self.mayHaveUnbuildableFiles = mayHaveUnbuildableFiles
|
||||
self.inferArgs = inferArgs
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user