From: Rozental, Gennadiy (Gennadiy_at_[hidden])
Date: 2002-08-14 11:26:41


> * Clear Borland Boost.Test warnings
I alerady investigated this. I will fix it today

> * Clear GCC 3.1 Boost.Test warnings
I alerady investigated this. I will fix it today

> * !!(predicate) fix as discussed
>From discussiton it seems that we have 2 solutions

( (predicate) ? true : false )
!!(predicate)

I tend to prefer first, since it does check for boolean conversion.

May be something like
((bool)(predicate))

would work also?

Gennadiy