mirror of
https://github.com/matrix-construct/construct
synced 2024-11-17 23:40:57 +01:00
ircd::json: Resize value bitfields to alignment for movdqa.
This commit is contained in:
parent
c4f294810c
commit
1ebe09f36b
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ struct ircd::json::value
|
||||||
const struct member *object;
|
const struct member *object;
|
||||||
};
|
};
|
||||||
|
|
||||||
uint64_t len : 57; ///< length indicator
|
uint64_t len : 58; ///< length indicator
|
||||||
uint64_t type : 3; ///< json::type indicator
|
uint64_t type : 3; ///< json::type indicator
|
||||||
uint64_t serial : 1; ///< only *string is used. type indicates JSON
|
uint64_t serial : 1; ///< only *string is used. type indicates JSON
|
||||||
uint64_t alloc : 1; ///< indicates the pointer for type is owned
|
uint64_t alloc : 1; ///< indicates the pointer for type is owned
|
||||||
|
|
Loading…
Reference in a new issue