From 204a8f55dc2e0ac8d27a781dab0da609b98560da Mon Sep 17 00:00:00 2001 From: Michael McLoughlin Date: Mon, 31 Dec 2018 17:14:54 -0800 Subject: [PATCH] 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 --- src/runtime/textflag.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.0