diff src/share/vm/utilities/globalDefinitions.hpp @ 2361:1216415d8e35

7014923: G1: code cleanup Summary: Some G1 code cleanup. Reviewed-by: johnc, jcoomes, jwilhelm
author tonyp
date Fri, 04 Mar 2011 17:13:19 -0500
parents b92c45f2bc75
children e863062e521d
line wrap: on
line diff
--- a/src/share/vm/utilities/globalDefinitions.hpp	Thu Mar 03 21:02:56 2011 -0800
+++ b/src/share/vm/utilities/globalDefinitions.hpp	Fri Mar 04 17:13:19 2011 -0500
@@ -1185,7 +1185,7 @@
 // '%d' formats to indicate a 64-bit quantity; commonly "l" (in LP64) or "ll"
 // (in ILP32).
 
-#define BOOL_TO_STR(__b) (__b) ? "true" : "false"
+#define BOOL_TO_STR(_b_) ((_b_) ? "true" : "false")
 
 // Format 32-bit quantities.
 #define INT32_FORMAT  "%d"