[clang-tools-extra] r343764 - [clangd] Revert accidental flag change
Sam McCall via cfe-commits
cfe-commits at lists.llvm.org
Thu Oct 4 03:10:35 PDT 2018
Author: sammccall
Date: Thu Oct 4 03:10:35 2018
New Revision: 343764
URL: http://llvm.org/viewvc/llvm-project?rev=343764&view=rev
Log:
[clangd] Revert accidental flag change
Modified:
clang-tools-extra/trunk/clangd/indexer/IndexerMain.cpp
Modified: clang-tools-extra/trunk/clangd/indexer/IndexerMain.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/indexer/IndexerMain.cpp?rev=343764&r1=343763&r2=343764&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/indexer/IndexerMain.cpp (original)
+++ clang-tools-extra/trunk/clangd/indexer/IndexerMain.cpp Thu Oct 4 03:10:35 2018
@@ -47,7 +47,7 @@ static llvm::cl::opt<IndexFileFormat>
"human-readable YAML format"),
clEnumValN(IndexFileFormat::RIFF, "binary",
"binary RIFF format")),
- llvm::cl::init(IndexFileFormat::RIFF));
+ llvm::cl::init(IndexFileFormat::YAML));
class IndexActionFactory : public tooling::FrontendActionFactory {
public:
More information about the cfe-commits
mailing list