[clangd] Initialize int field to zero. NFC

To make sure we do not have uninitialized values and undefined behavior.

llvm-svn: 371081
This commit is contained in:
Ilya Biryukov 2019-09-05 15:30:05 +00:00
parent 32e7773fd5
commit 886382ff07
1 changed files with 1 additions and 1 deletions

View File

@ -1205,7 +1205,7 @@ llvm::json::Value toJSON(const FileStatus &FStatus);
/// specific line of the text document.
struct SemanticHighlightingInformation {
/// The line these highlightings belong to.
int Line;
int Line = 0;
/// The base64 encoded string of highlighting tokens.
std::string Tokens;
};