1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-02 08:39:46 +02:00

Fixed the value of MAX_HIGH_SURROGATE

This commit is contained in:
Yarn366 2017-07-06 17:00:01 -04:00 committed by Steve Daulton
parent f667b9f269
commit 26a6815db8

View File

@ -52,7 +52,7 @@ static int charXMLCompatiblity[] =
// These are used by XMLEsc to handle surrogate pairs and filter invalid characters outside the ASCII range.
#define MIN_HIGH_SURROGATE static_cast<wxUChar>(0xD800)
#define MAX_HIGH_SURROGATE static_cast<wxUChar>(0xDCFF)
#define MAX_HIGH_SURROGATE static_cast<wxUChar>(0xDBFF)
#define MIN_LOW_SURROGATE static_cast<wxUChar>(0xDC00)
#define MAX_LOW_SURROGATE static_cast<wxUChar>(0xDFFF)