1
0
mirror of https://github.com/google/gops.git synced 2025-02-19 19:59:55 +02:00

Add //go:build tags for Go 1.17

Run Go 1.17 gofmt to add //go:build tags.
This commit is contained in:
Tobias Klauser 2021-09-03 09:35:42 +02:00 committed by Tobias Klauser
parent f5057debe6
commit a22894be16
4 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build !js && !plan9 && !windows
// +build !js,!plan9,!windows
package agent

View File

@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build (js && wasm) || plan9 || windows
// +build js,wasm plan9 windows
package agent

View File

@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build go1.13
// +build go1.13
package internal

View File

@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build !go1.13
// +build !go1.13
package internal