Fix up test case for QNX.

[SVN r32539]
This commit is contained in:
John Maddock
2006-02-04 17:36:01 +00:00
parent 3d33b40f9a
commit faa53217cd

View File

@ -26,8 +26,11 @@ namespace boost_has_stdint_h{
int test() int test()
{ {
int8_t i = 0; 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_fast8_t j = 0;
int_least8_t k = 0; int_least8_t k = 0;
#endif
(void)i; (void)i;
(void)j; (void)j;
(void)k; (void)k;
@ -42,3 +45,4 @@ int test()