Skip to content

Commit

Permalink
Merge pull request #59 from tklauser/go-build-lines
Browse files Browse the repository at this point in the history
Add //go:build lines
  • Loading branch information
mattn committed Sep 25, 2021
2 parents a2827f0 + 4433af2 commit a53eda5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions colorable_appengine.go
@@ -1,3 +1,4 @@
//go:build appengine
// +build appengine

package colorable
Expand Down
4 changes: 2 additions & 2 deletions colorable_others.go
@@ -1,5 +1,5 @@
// +build !windows
// +build !appengine
//go:build !windows && !appengine
// +build !windows,!appengine

package colorable

Expand Down
4 changes: 2 additions & 2 deletions colorable_windows.go
@@ -1,5 +1,5 @@
// +build windows
// +build !appengine
//go:build windows && !appengine
// +build windows,!appengine

package colorable

Expand Down

0 comments on commit a53eda5

Please sign in to comment.