run gofmt to add the new go:build tags

This commit is contained in:
Marten Seemann 2021-09-14 18:37:41 +02:00
parent ebcd98ed43
commit 59ea0daea1
14 changed files with 15 additions and 2 deletions

View file

@ -1,3 +1,4 @@
//go:build !darwin && !linux && !freebsd && !windows
// +build !darwin,!linux,!freebsd,!windows
package quic

View file

@ -1,3 +1,4 @@
//go:build darwin
// +build darwin
package quic

View file

@ -1,3 +1,4 @@
//go:build freebsd
// +build freebsd
package quic

View file

@ -1,3 +1,4 @@
//go:build linux
// +build linux
package quic

View file

@ -1,3 +1,4 @@
//go:build darwin || linux || freebsd
// +build darwin linux freebsd
package quic

View file

@ -1,3 +1,4 @@
//go:build !windows
// +build !windows
package quic

View file

@ -1,3 +1,4 @@
//go:build windows
// +build windows
package quic

View file

@ -1,3 +1,4 @@
//go:build windows
// +build windows
package quic

View file

@ -1,3 +1,4 @@
//go:build !race
// +build !race
package israce

View file

@ -1,3 +1,4 @@
//go:build race
// +build race
package israce

View file

@ -1,5 +1,5 @@
// +build go1.16
// +build !go1.17
//go:build go1.16 && !go1.17
// +build go1.16,!go1.17
package qtls

View file

@ -1,3 +1,4 @@
//go:build go1.17
// +build go1.17
package qtls

View file

@ -1,3 +1,4 @@
//go:build go1.18
// +build go1.18
package qtls

View file

@ -1,3 +1,4 @@
//go:build tools
// +build tools
package quic