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

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