From: Michael McLoughlin Date: Tue, 1 Jan 2019 01:14:54 +0000 (-0800) Subject: runtime: fix REFLECTMETHOD macro X-Git-Tag: go1.12beta2~67 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=204a8f55dc2e0ac8d27a781dab0da609b98560da;p=gostls13.git 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 TryBot-Result: Gobot Gobot Reviewed-by: Ian Lance Taylor --- 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