From 8b32510896f92e948a0addeaf752ff9f87f02550 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 7 Feb 2006 11:13:07 +0000 Subject: [PATCH] Oops last QNX fix didn't quite work, should be really fixed now! [SVN r32697] --- test/boost_has_stdint_h.ipp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/boost_has_stdint_h.ipp b/test/boost_has_stdint_h.ipp index dfcfc717..c731f503 100644 --- a/test/boost_has_stdint_h.ipp +++ b/test/boost_has_stdint_h.ipp @@ -30,10 +30,10 @@ int test() // 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; +#endif + (void)i; return 0; }