[clangd] Fix some buildbots after r342965

Some compilers fail to parse struct default member initializer.

llvm-svn: 342970
This commit is contained in:
Kirill Bobyrev 2018-09-25 13:14:11 +00:00
parent b56be79e0c
commit 69e6388564
1 changed files with 1 additions and 1 deletions

View File

@ -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.");