mirror of
https://github.com/boostorg/regex.git
synced 2025-07-17 14:22:08 +02:00
regex: fix for previous slip up when fixing warning messages
[SVN r8972]
This commit is contained in:
@ -311,7 +311,7 @@ void expand_escapes(string_type& s)
|
|||||||
s[pos] = 0;
|
s[pos] = 0;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
s.insert(s.begin() + pos, (char)val);
|
s.insert(s.begin() + pos, (string_type::value_type)val);
|
||||||
i = pos;
|
i = pos;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user