diff --git a/test/boost_has_stdint_h.ipp b/test/boost_has_stdint_h.ipp index 742c0612..dfcfc717 100644 --- a/test/boost_has_stdint_h.ipp +++ b/test/boost_has_stdint_h.ipp @@ -26,8 +26,11 @@ namespace boost_has_stdint_h{ int test() { int8_t i = 0; +#ifndef __QNX__ + // QNX has these under non-standard names, our cstdint.hpp will find them however: int_fast8_t j = 0; int_least8_t k = 0; +#endif (void)i; (void)j; (void)k; @@ -42,3 +45,4 @@ int test() +