Apparently with the introduction of BOOST_WORKAROUND, an __HP_aCC__ got warped into __IBMCPP__ (while the aCC version number is still correct). So Aleksey if you could apply this patch (or if you want me to do it ?)
toon Index: integral_c.hpp =================================================================== RCS file: /cvsroot/boost/boost/boost/mpl/integral_c.hpp,v retrieving revision 1.11 diff -u -r1.11 integral_c.hpp --- integral_c.hpp 23 Dec 2002 04:59:55 -0000 1.11 +++ integral_c.hpp 3 Jan 2003 07:43:39 -0000 @@ -49,7 +49,7 @@ typedef integral_c<T, prior_value> prior; #elif BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x561)) \ || BOOST_WORKAROUND(__IBMCPP__, BOOST_TESTED_AT(502)) \ - || BOOST_WORKAROUND(__IBMCPP__, BOOST_TESTED_AT(53800)) + || BOOST_WORKAROUND(__HP_aCC, BOOST_TESTED_AT(53800)) typedef integral_c<T, (N + 1)> next; typedef integral_c<T, (N - 1)> prior; #else _______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost