$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Robert Ramey (ramey_at_[hidden])
Date: 2004-08-17 15:09:11
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