mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
Merge pull request #88203 from Listwon/char-range-build-size
Link `xid_start` and `xid_continue` externally to prevent data duplication in binary
This commit is contained in:
commit
106efa44d4
@ -38,7 +38,7 @@ struct CharRange {
|
||||
char32_t end;
|
||||
};
|
||||
|
||||
static CharRange xid_start[] = {
|
||||
inline constexpr CharRange xid_start[] = {
|
||||
{ 0x41, 0x5a },
|
||||
{ 0x5f, 0x5f },
|
||||
{ 0x61, 0x7a },
|
||||
@ -692,7 +692,7 @@ static CharRange xid_start[] = {
|
||||
{ 0x0, 0x0 },
|
||||
};
|
||||
|
||||
static CharRange xid_continue[] = {
|
||||
inline constexpr CharRange xid_continue[] = {
|
||||
{ 0x30, 0x39 },
|
||||
{ 0x41, 0x5a },
|
||||
{ 0x5f, 0x5f },
|
||||
|
Loading…
Reference in New Issue
Block a user