aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/textflag.h
diff options
context:
space:
mode:
authorMichael McLoughlin <mmcloughlin@gmail.com>2018-12-31 17:14:54 -0800
committerIan Lance Taylor <iant@golang.org>2019-01-01 20:15:48 +0000
commit204a8f55dc2e0ac8d27a781dab0da609b98560da (patch)
tree3bcb4500a64f89df464b58f3fda27232c2fba5a8 /src/runtime/textflag.h
parentc6282e7ac5a73809b8423a2abc45940148eb5bc7 (diff)
downloadgo-204a8f55dc2e0ac8d27a781dab0da609b98560da.tar.gz
go-204a8f55dc2e0ac8d27a781dab0da609b98560da.zip
runtime: fix REFLECTMETHOD macro
Removes spurious equals sign from REFLECTMETHOD macro. Fixes #29487 Change-Id: Iaa3d85ff57087aa79a259f28816f8b0a552536f3 Reviewed-on: https://go-review.googlesource.com/c/155927 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/runtime/textflag.h')
-rw-r--r--src/runtime/textflag.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/textflag.h b/src/runtime/textflag.h
index 929e9b36a9..d1bb52cc00 100644
--- a/src/runtime/textflag.h
+++ b/src/runtime/textflag.h
@@ -31,4 +31,4 @@
// TODO(mwhudson): only implemented for ppc64x at present.
#define NOFRAME 512
// Function can call reflect.Type.Method or reflect.Type.MethodByName.
-#define REFLECTMETHOD = 1024
+#define REFLECTMETHOD 1024