forked from OSchip/llvm-project
[clangd] Fix some buildbots after r342965
Some compilers fail to parse struct default member initializer. llvm-svn: 342970
This commit is contained in:
parent
b56be79e0c
commit
69e6388564
|
@ -50,7 +50,7 @@ struct Chunk {
|
|||
/// The first element of decompressed Chunk.
|
||||
DocID Head;
|
||||
/// VByte-encoded deltas.
|
||||
std::array<uint8_t, PayloadSize> Payload = std::array<uint8_t, PayloadSize>();
|
||||
std::array<uint8_t, PayloadSize> Payload;
|
||||
};
|
||||
static_assert(sizeof(Chunk) == 32, "Chunk should take 32 bytes of memory.");
|
||||
|
||||
|
|
Loading…
Reference in New Issue