Author: kadircet
Date: Thu Jul  4 06:47:51 2019
New Revision: 365140

URL: http://llvm.org/viewvc/llvm-project?rev=365140&view=rev
Log:
[clangd] Fix breakage on gcc 5.4

Modified:
    clang-tools-extra/trunk/clangd/index/Background.h

Modified: clang-tools-extra/trunk/clangd/index/Background.h
URL: 
http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/index/Background.h?rev=365140&r1=365139&r2=365140&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/index/Background.h (original)
+++ clang-tools-extra/trunk/clangd/index/Background.h Thu Jul  4 06:47:51 2019
@@ -96,7 +96,7 @@ public:
 private:
   /// Represents the state of a single file when indexing was performed.
   struct ShardVersion {
-    FileDigest Digest{0};
+    FileDigest Digest{{0}};
     bool HadErrors = false;
   };
 


_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to