diff --git a/test/boost_has_stdint_h.ipp b/test/boost_has_stdint_h.ipp index ef9b5162..d28d4e54 100644 --- a/test/boost_has_stdint_h.ipp +++ b/test/boost_has_stdint_h.ipp @@ -13,7 +13,11 @@ // presence; thus the default is not present, conforming // to the current C++ standard). -#include +# if defined(__hpux) || defined(__FreeBSD__) || defined(__IBMCPP__) +# include +# else +# include +# endif namespace boost_has_stdint_h{ @@ -34,3 +38,4 @@ int test() +