Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions transport/roots/system/nilref_nil_darwin.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build cgo && !arm && !arm64 && !ios && !go1.10
// +build cgo,!arm,!arm64,!ios,!go1.10
//go:build cgo && !ios && !go1.10
// +build cgo,!ios,!go1.10

package system

Expand Down
4 changes: 2 additions & 2 deletions transport/roots/system/nilref_zero_darwin.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build cgo && !arm && !arm64 && !ios && go1.10
// +build cgo,!arm,!arm64,!ios,go1.10
//go:build cgo && !ios && go1.10
// +build cgo,!ios,go1.10

package system

Expand Down
4 changes: 2 additions & 2 deletions transport/roots/system/root_cgo_darwin.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build darwin && cgo && !arm && !arm64 && !ios
// +build darwin,cgo,!arm,!arm64,!ios
//go:build darwin && cgo && !ios
// +build darwin,cgo,!ios

package system

Expand Down
Loading
Loading