Skip to content

Commit e5f9a65

Browse files
authored
Update Capabilities.swift so Xcode 13 can build the app (huggingface#66)
Update Capabilities.swift Changed constant deviceSupportsQuantization to include word "return" so the project could be built using Xcode 13
1 parent b434cee commit e5f9a65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diffusion-macOS/Capabilities.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ let deviceHas6GBOrMore = true
1313

1414
let deviceSupportsQuantization = {
1515
if #available(macOS 14, *) {
16-
true
16+
return true
1717
} else {
18-
false
18+
return false
1919
}
2020
}()
2121

0 commit comments

Comments
 (0)