1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

UnicodeData: Remove unnecessary pack pragmas

This commit is contained in:
reuk 2024-05-07 12:33:07 +01:00
parent b9a1bfbc22
commit 5d2b1b7aa7
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -32,7 +32,6 @@
==============================================================================
*/
#pragma pack(push, 8)
struct UnicodeEntry
{
LineBreakType bt;
@ -42,8 +41,9 @@ struct UnicodeEntry
VerticalTransformType vertical;
EmojiType emoji;
};
#pragma pack(pop)
static_assert (alignof (UnicodeEntry) == 1);
static_assert (sizeof (UnicodeEntry) == 6);
static const int uncompressedUnicodeDataSize = 6684666;
static const uint8_t compressedUnicodeData[] =