In my code, I want to ensure that sizeof(a) == sizeof(b).
First approach was to let the preprocessor do the checking:
#if (sizeof(a) != sizeof(b))
# error sizes don't match
#endif
which doesn't compile because of fatal error C1017: invalid integer constant expression. Okay. Understand.
Next try:
if(sizeof(a) != sizeof(b)){
printf("sizes don't match\n");
return -1;
}
Which results in a warning: warning C4127: conditional expression is constant.
Now, I'm stuck. Is there a warning-and-error-free way to make sure that the two structs a and b have the same size?
Edit: Compiler is Visual Studio 2005, Warning level is set to 4.
doubleis the same size as__int64. I ended up disabling that warning. – Mysticial Oct 5 '11 at 6:18C. Template tricks won't work here... – eran Oct 5 '11 at 7:55