mirror of
https://github.com/boostorg/detail.git
synced 2025-07-30 04:17:14 +02:00
Fix max
[SVN r30051]
This commit is contained in:
@ -123,7 +123,7 @@ std::codecvt_base::result utf8_codecvt_facet::do_out(
|
|||||||
0x00, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc
|
0x00, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc
|
||||||
};
|
};
|
||||||
|
|
||||||
wchar_t max_wchar = std::numeric_limits<wchar_t>::max();
|
wchar_t max_wchar = (std::numeric_limits<wchar_t>::max)();
|
||||||
while (from != from_end && to != to_end) {
|
while (from != from_end && to != to_end) {
|
||||||
|
|
||||||
// Check for invalid UCS-4 character
|
// Check for invalid UCS-4 character
|
||||||
|
Reference in New Issue
Block a user