whitespace fixes

This commit is contained in:
David Lamparter 2016-06-22 13:44:56 +02:00
parent 1c0652db2d
commit 48535d02bd
3 changed files with 7 additions and 7 deletions

View file

@ -17,7 +17,7 @@
/* Visual Studio notes:
* Unless capn_segment is defined with __declspec(align(64)), check_segment_alignment
* Fails to compile in x86 mode, as (sizeof(struct capn_segment)&7) -> (44 & 7) evaluates to 4
* Compiles in x64 mode, as (sizeof(struct capn_segment)&7) -> (80 & 7) evaluates to 0
* Compiles in x64 mode, as (sizeof(struct capn_segment)&7) -> (80 & 7) evaluates to 0
*/
struct check_segment_alignment {
unsigned int foo : (sizeof(struct capn_segment)&7) ? -1 : 1;