We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73d5077 commit a4484ffCopy full SHA for a4484ff
benchmark/utils/ArgParse.swift
@@ -55,7 +55,7 @@ public func parseArgs(_ validOptions: [String]? = nil)
55
continue
56
}
57
// Attempt to split it into two components separated by an equals sign.
58
- let components = arg.componentsSeparated(by: "=")
+ let components = arg.components(separatedBy: "=")
59
let optionName = components[0]
60
if validOptions != nil && !validOptions!.contains(optionName) {
61
print("Invalid option: \(arg)")
0 commit comments