(svn r12761) -Codechange: lots of minor whitespace coding style fixes around operators.

This commit is contained in:
rubidium
2008-04-18 04:37:06 +00:00
parent 6daaf0fc55
commit 9d8fa486af
33 changed files with 70 additions and 70 deletions

View File

@@ -296,9 +296,9 @@ assert_compile(sizeof(uint8) == 1);
#define endof(x) (&x[lengthof(x)])
#define lastof(x) (&x[lengthof(x) - 1])
#define cpp_offsetof(s,m) (((size_t)&reinterpret_cast<const volatile char&>((((s*)(char*)8)->m))) - 8)
#define cpp_offsetof(s, m) (((size_t)&reinterpret_cast<const volatile char&>((((s*)(char*)8)->m))) - 8)
#if !defined(offsetof)
#define offsetof(s,m) cpp_offsetof(s, m)
#define offsetof(s, m) cpp_offsetof(s, m)
#endif /* offsetof */