
17 Aug
2004
17 Aug
'04
8:09 p.m.
In testing the serialization library it has come to my attention that at least the two compilers on 64 bit platforms use something like typedef long int int64_t; typedef long unsigned int uint64_t; This is causing me some problems. At the same time some compilers have typedef short int wchar_t; This would cause similar problems for me except for the fact that we have BOOST_NO_INTRINSIC_WCHAR_T So I can skip over them at the preprocessor level. Is there any reason we can't add to the config files? BOOST_NO_INTRINSIC_INT64 BOOST_NO_INTRINSIC_UINT64 Robert Ramey