forked from boostorg/config
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:
@ -13,7 +13,11 @@
|
||||
// presence; thus the default is not present, conforming
|
||||
// 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{
|
||||
|
||||
@ -34,3 +38,4 @@ int test()
|
||||
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user