Date: Sun, 30 Jan 2011 17:29:41 +0000 From: Alexander Best <arundel@freebsd.org> To: freebsd-hackers@freebsd.org Subject: empty function macros Message-ID: <20110130172941.GA10701@freebsd.org>
next in thread | raw e-mail | index | archive | help
hi there, i noticed freebsd has a few of the following macros: #define FUNC(sb) when you do something like if (cond) FUNC(i) the compiler complains about an if statement with an empty body. any sensible way of dealing with this issue? i saw some reiserfs code which does the following to silence compilers: #define FUNC(sb) do { } while (0) cheers. alex -- a13x
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20110130172941.GA10701>