mirror of
https://github.com/boostorg/detail.git
synced 2025-07-29 20:07:15 +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
|
||||
};
|
||||
|
||||
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) {
|
||||
|
||||
// Check for invalid UCS-4 character
|
||||
|
Reference in New Issue
Block a user