[RFC]: (void)0 instead of empty defines

From: Roman Divacky <rdivacky_at_freebsd.org>
Date: Mon, 15 Jun 2009 20:15:55 +0200
hi

in many places we do something like

#ifdef SOMETHING
#define FOO some_code
#else
#define FOO
#endif


I propose to change the second FOO to (void)0 in many places to

1) let this compile cleanly with clang. Clang warns in many places
about
		if (cond)
			FOO;

which has empty if body

2) enforces ; at the end of the expression

this does not cost us nothing so I hope this change is ok.

patch at: http://www.vlakno.cz/~rdivacky/void-zero.patch                                                                                                         

what do you think?

roman

p.s. there's also ACPI_DEBUG_PRINT in contrib/acpica which I hope
jkim might handle

Received on Mon Jun 15 2009 - 16:16:05 UTC

This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:39:50 UTC