From faa53217cd705a543778da376b074f9e635d8abd Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 4 Feb 2006 17:36:01 +0000 Subject: [PATCH] Fix up test case for QNX. [SVN r32539] --- test/boost_has_stdint_h.ipp | 4 ++++ 1 file changed, 4 insertions(+) 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() +