From d1838c80632eeb514d6ceb98e5e7761eafe891e3 Mon Sep 17 00:00:00 2001 From: Moritz Poldrack Date: Sat, 6 Aug 2022 23:06:36 +0200 Subject: [PATCH] restore compatibility with Go 1.16 Fix build error with go 1.16: //go:build comment without // +build comment Signed-off-by: Moritz Poldrack Acked-by: Robin Jarry --- tools.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tools.go b/tools.go index e59cfdd..b682c00 100644 --- a/tools.go +++ b/tools.go @@ -1,4 +1,5 @@ //go:build tools +// +build tools package main