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:
parent
f667b9f269
commit
26a6815db8
@ -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)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user