aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Symonds <dsymonds@golang.org>2015-02-09 11:09:49 +1100
committerDavid Symonds <dsymonds@golang.org>2015-02-09 11:09:49 +1100
commitcd5bc366c64af2c22f3243cedd539259abafe7af (patch)
tree7dafa6d3753044f98c3b0756e448eef43245fdaa
parent1e73516e50e04b41a6760c856eee86b00a384526 (diff)
downloadprotobuf-cd5bc366c64af2c22f3243cedd539259abafe7af.tar.gz
Drop "appenginevm" tag.
"appengine" and "appenginevm" are mutually exclusive.
-rw-r--r--proto/pointer_reflect.go2
-rw-r--r--proto/pointer_unsafe.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/proto/pointer_reflect.go b/proto/pointer_reflect.go
index 93259a3..c68b125 100644
--- a/proto/pointer_reflect.go
+++ b/proto/pointer_reflect.go
@@ -29,7 +29,7 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-// +build appengine,!appenginevm
+// +build appengine
// This file contains an implementation of proto field accesses using package reflect.
// It is slower than the code in pointer_unsafe.go but it avoids package unsafe and can
diff --git a/proto/pointer_unsafe.go b/proto/pointer_unsafe.go
index c52db1c..48bc0fa 100644
--- a/proto/pointer_unsafe.go
+++ b/proto/pointer_unsafe.go
@@ -29,7 +29,7 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-// +build !appengine appenginevm
+// +build !appengine
// This file contains the implementation of the proto field accesses using package unsafe.