aboutsummaryrefslogtreecommitdiff
path: root/content/context
diff options
context:
space:
mode:
authorDave Cheney <dave@cheney.net>2014-08-07 10:23:40 +1000
committerDave Cheney <dave@cheney.net>2014-08-07 10:23:40 +1000
commitce4d092e56cc72b8d7e5568bad5154e5deeface3 (patch)
tree0deabe6df2ace2c5a799a011256f92dee6093337 /content/context
parenta56c7ca6b69388336977a4d097b4c57a66d4e821 (diff)
go.blog: fix build errors
Exclude these two files from the build LGTM=adg R=adg CC=golang-codereviews https://golang.org/cl/126760044
Diffstat (limited to 'content/context')
-rw-r--r--content/context/interface.go2
-rw-r--r--content/context/tomb/tomb.go2
2 files changed, 4 insertions, 0 deletions
diff --git a/content/context/interface.go b/content/context/interface.go
index 38a6323..838c7da 100644
--- a/content/context/interface.go
+++ b/content/context/interface.go
@@ -1,3 +1,5 @@
+// +build OMIT
+
package context
import "time"
diff --git a/content/context/tomb/tomb.go b/content/context/tomb/tomb.go
index 8a2142f..0cfa5d4 100644
--- a/content/context/tomb/tomb.go
+++ b/content/context/tomb/tomb.go
@@ -1,3 +1,5 @@
+// +build OMIT
+
// Package tomb provides a Context implementation that is canceled when either
// its parent Context is canceled or a provided Tomb is killed.
package tomb