From 366bd4d57c93af27cb1b721cb61821b4a853da7e Mon Sep 17 00:00:00 2001 From: Morten Siebuhr Date: Thu, 30 Jul 2015 22:44:33 +0200 Subject: [PATCH] Move build-constraints near the top. --- text/fuzz.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/text/fuzz.go b/text/fuzz.go index 2fbf0d2..b53c119 100644 --- a/text/fuzz.go +++ b/text/fuzz.go @@ -11,13 +11,13 @@ // See the License for the specific language governing permissions and // limitations under the License. +// Build only when actually fuzzing +// +build gofuzz + package text import "bytes" -// Build only when actually fuzzing -// +build gofuzz - // Fuzz text metric parser with with github.com/dvyukov/go-fuzz: // // go-fuzz-build github.com/prometheus/client_golang/text