Do not break non-GCC/g++ compilers.
This commit is contained in:
parent
0e9624f69f
commit
6e686af8b5
|
@ -14,6 +14,14 @@
|
|||
#include <cstring>
|
||||
#include <limits>
|
||||
|
||||
#ifndef __packed
|
||||
#if defined(__GNUC__)
|
||||
#define __packed __attribute__((packed))
|
||||
#else
|
||||
#define __packed
|
||||
#endif
|
||||
#endif
|
||||
|
||||
namespace Kakoune
|
||||
{
|
||||
|
||||
|
@ -82,7 +90,7 @@ struct ParsedRegex
|
|||
Codepoint value;
|
||||
Quantifier quantifier;
|
||||
uint16_t filler = 0;
|
||||
} __attribute__((packed));
|
||||
} __packed;
|
||||
static_assert(sizeof(Node) == 16, "");
|
||||
|
||||
Vector<Node, MemoryDomain::Regex> nodes;
|
||||
|
|
Loading…
Reference in New Issue
Block a user