Hi,
i have problems with the file c_regex_traits.cpp. I work under CodeWarrior
6/7 with a Macintosh.
These problem ist with boost 1.25.1,1.26.
template <class charT>
unsigned int BOOST_REGEX_CALL re_get_message(charT* buf, unsigned int
len, unsigned int id)
{
unsigned int size = _re_get_message((char*)0, 0, id);
if(len < size)
return size;
boost::scoped_array<char> cb(new char[size]);
_re_get_message(cb.get(), size, id);
size = boost::c_regex_traits