sizeof (verify_type__ (R)), to pacify C++ compilers.
2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
+ * verify.h (verify_expr): Use ((verify_type__ (R) *) 0), not
+ sizeof (verify_type__ (R)), to pacify C++ compilers. Problem
+ reported by Bruno Haible.
+
* version-etc-fsf.c (version_etc_copyright): Parameterize the
copyright symbol and the year.
* version-etc.c (COPYRIGHT_YEAR): New constant.
This macro can be used in some contexts where verify cannot, and vice versa.
Return void. */
-# define verify_expr(R) ((void) sizeof (verify_type__ (R)))
+# define verify_expr(R) ((void) ((verify_type__ (R) *) 0))
#endif