From: John Maddock (jm_at_[hidden])
Date: 2003-04-18 05:24:13


Just looked at is_union. That won't work, I guess. You need to add a

typedef T cvt;

or change it to

BOOST_STATIC_CONSTANT(bool, value = BOOST_IS_UNION(T));

~~~~~~~~

Ah, yes, BOOST_IS_UNION expands to false regardless of argument at present
so the regression tests didn't pick it up, well spotted, thanks,

John.