From 1a4990a4f71adf1ea0b8f7e0ae2ddd8a85f9c393 Mon Sep 17 00:00:00 2001 From: Sam McCall Date: Wed, 3 Mar 2021 11:45:16 +0100 Subject: [PATCH] [clangd] Fix uninit member --- clang-tools-extra/clangd/Protocol.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang-tools-extra/clangd/Protocol.h b/clang-tools-extra/clangd/Protocol.h index f918183..71de24a 100644 --- a/clang-tools-extra/clangd/Protocol.h +++ b/clang-tools-extra/clangd/Protocol.h @@ -981,7 +981,7 @@ struct DocumentSymbol { SymbolKind kind; /// Indicates if this symbol is deprecated. - bool deprecated; + bool deprecated = false; /// The range enclosing this symbol not including leading/trailing whitespace /// but everything else like comments. This information is typically used to -- 2.7.4