Boost logo

Boost :

From: George M. Garner Jr. (gmgarner_at_[hidden])
Date: 2005-08-16 13:11:01


John,

Would you mind including this regex fix:

file: basic_regex.hpp.
bool BOOST_REGEX_CALL empty()const
{
--return (m_pimpl.get() ? 0 != m_pimpl->status() : 0);
++return (m_pimpl.get() ? 0 != m_pimpl->status() : 1);
}
Reason:

empty() currently returns false (0) when the result of get() is NULL.

Regards,

George.

"John Maddock" <john_at_[hidden]> a écrit dans le message de news:
00f201c5a182$373f8fa0$ba4e0352_at_fuji...
>I notice that there are already a few patches that have gone into the
> RC_1_33_0 branch, presumably in expectation of a 1.33.1 release?
>
> So some questions:
>
> 1) Is the release branch now officially open again for patches: I assume
> that it is now that the release is out.
> 2) Is there any interest in either a hotfix patch-release or possibly a
> full
> 1.33.1 in 4 to 6 weeks time?
>
> If yes, then I believe we really need to start a readme file with a list
> of
> patches made - this would become the readme for the patch when it's
> released.
>
> Thoughts?
>
> John.
>
> _______________________________________________
> Unsubscribe & other changes:
> http://lists.boost.org/mailman/listinfo.cgi/boost
>


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk