Run go fmt with Go 1.17

The new `go fmt` adds `//go:build` lines (https://golang.org/doc/go1.17#tools).

Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
This commit is contained in:
Akihiro Suda
2021-08-22 09:31:50 +09:00
parent ff2e58d114
commit d3aa7ee9f0
186 changed files with 187 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
//go:build go1.8 && !windows && amd64 && !static_build && !gccgo
// +build go1.8,!windows,amd64,!static_build,!gccgo
/*

View File

@@ -1,3 +1,4 @@
//go:build !go1.8 || windows || !amd64 || static_build || gccgo
// +build !go1.8 windows !amd64 static_build gccgo
/*