On Tuesday 15 February 2005 21:46, James Hawkins wrote:
Should we reconcile the difference and remove the align from out types? If not the tests won't compile with vs so I guess the other option would be to #pragma disable that warning. Any ideas?
The use of DECLSPEC_ALIGN(8) could be made dependend on which compiler is used. When compiling with GCC we really need the modifier because otherwise it will align 64 bit types to 4 bytes, unlike MSVC, which aligns them to 8 bytes by default.
-Hans