Fixed primary equivalence classes, so that delimiter based sort keys with a delim in position 0 still work.

[SVN r26738]
This commit is contained in:
John Maddock
2005-01-19 11:13:53 +00:00
parent 2a248d1f87
commit 8545aeb1f3
3 changed files with 7 additions and 1 deletions

View File

@ -91,6 +91,8 @@ c_regex_traits<char>::string_type BOOST_REGEX_CALL c_regex_traits<char>::transfo
case ::boost::re_detail::sort_delim:
// get a regular sort key, and then truncate everything after the delim:
result = transform(p1, p2);
if(result.size() && (result[0] == s_delim))
break;
std::size_t i;
for(i = 0; i < result.size(); ++i)
{