Undone previous fix (the whole idea of this file is to test whether stdint.h is available, not to "fake" it's presence. Added explicit check for those platforms that have intypes.h rather than stdint.h.

[SVN r20197]
This commit is contained in:
John Maddock
2003-09-27 10:43:36 +00:00
parent 990526ae7b
commit 6d6f37633d

View File

@ -13,7 +13,11 @@
// presence; thus the default is not present, conforming // presence; thus the default is not present, conforming
// to the current C++ standard). // to the current C++ standard).
#include <boost/cstdint.h> # if defined(__hpux) || defined(__FreeBSD__) || defined(__IBMCPP__)
# include <inttypes.h>
# else
# include <stdint.h>
# endif
namespace boost_has_stdint_h{ namespace boost_has_stdint_h{
@ -34,3 +38,4 @@ int test()