mirror of
https://github.com/boostorg/config.git
synced 2025-07-30 04:17:16 +02:00
Fix up test case for QNX.
[SVN r32539]
This commit is contained in:
@ -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()
|
||||
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user