|
Boost Testing : |
From: John Maddock (john_at_[hidden])
Date: 2005-11-04 08:20:20
> # if (defined(__GNUC__) && __GNUC__ >= 3) && \
> !(defined(__QNXNTO__) && !(defined(__GLIBCPP__) ||
> defined(__GLIBCXX__)))
>
> Would do it. I realise this is full of double negatives, but it's
> too early to get my brain around the rearangement!
Doh! That rearranges very nicely to:
# if (defined(__GNUC__) && __GNUC__ >= 3) && \
(!defined(__QNXNTO__) || defined(__GLIBCPP__) || defined(__GLIBCXX__))
John.