[clang-tools-extra] r348262 - Fix "array must be initialized with a brace-enclosed initializer" build error.
Simon Pilgrim via cfe-commits
cfe-commits at lists.llvm.org
Tue Dec 4 06:07:29 PST 2018
Author: rksimon
Date: Tue Dec 4 06:07:29 2018
New Revision: 348262
URL: http://llvm.org/viewvc/llvm-project?rev=348262&view=rev
Log:
Fix "array must be initialized with a brace-enclosed initializer" build error.
Try to fix clang-bpf-build buildbot.
Modified:
clang-tools-extra/trunk/clangd/Headers.h
Modified: clang-tools-extra/trunk/clangd/Headers.h
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/Headers.h?rev=348262&r1=348261&r2=348262&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/Headers.h (original)
+++ clang-tools-extra/trunk/clangd/Headers.h Tue Dec 4 06:07:29 2018
@@ -55,7 +55,7 @@ struct IncludeGraphNode {
// True if current file is a main file rather than a header.
bool IsTU = false;
llvm::StringRef URI;
- FileDigest Digest{0};
+ FileDigest Digest{{0}};
std::vector<llvm::StringRef> DirectIncludes;
};
// FileURI and FileInclusions are references to keys of the map containing
More information about the cfe-commits
mailing list