mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
third_party/protobuf: Reduce the required alignment of ArenaString from 8 to 4
https://github.com/protocolbuffers/protobuf/pull/10298
This commit is contained in:
parent
18a93358d1
commit
b497e0aba7
@ -64,8 +64,8 @@ constexpr size_t kNewAlign = alignof(std::max_align_t);
|
|||||||
#endif
|
#endif
|
||||||
constexpr size_t kStringAlign = alignof(std::string);
|
constexpr size_t kStringAlign = alignof(std::string);
|
||||||
|
|
||||||
static_assert((kStringAlign > kNewAlign ? kStringAlign : kNewAlign) >= 8, "");
|
static_assert((kStringAlign > kNewAlign ? kStringAlign : kNewAlign) >= 4, "");
|
||||||
static_assert(alignof(ExplicitlyConstructedArenaString) >= 8, "");
|
static_assert(alignof(ExplicitlyConstructedArenaString) >= 4, "");
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user