forked from boostorg/config
Fix up test case for QNX.
[SVN r32539]
This commit is contained in:
@ -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()
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user