Skip to content

Commit

Permalink
Merge pull request #1362 from fancybits/ios-iokit
Browse files Browse the repository at this point in the history
[ios][disk] IOKit is not available on iOS
  • Loading branch information
shirou committed Nov 19, 2022
2 parents 672e251 + 0823447 commit d3ea877
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions disk/disk_darwin_cgo.go
@@ -1,5 +1,5 @@
//go:build darwin && cgo
// +build darwin,cgo
//go:build darwin && cgo && !ios
// +build darwin,cgo,!ios

package disk

Expand Down
4 changes: 2 additions & 2 deletions disk/disk_darwin_nocgo.go
@@ -1,5 +1,5 @@
//go:build darwin && !cgo
// +build darwin,!cgo
//go:build (darwin && !cgo) || ios
// +build darwin,!cgo ios

package disk

Expand Down

0 comments on commit d3ea877

Please sign in to comment.