Skip to content

Commit d0d37ca

Browse files
kirillbobyrevmemfrob
authored andcommitted
[dexp] NFC: Change positional argument format
Summary: Before: USAGE: dexp [options] --index-path Path to the index After: USAGE: dexp [options] <INDEX FILE> Reviewers: sammccall Reviewed By: sammccall Subscribers: jkorous, arphaman, kadircet, usaxena95, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D78089
1 parent 73f4697 commit d0d37ca

File tree

1 file changed

+1
-2
lines changed
  • clang-tools-extra/clangd/index/dex/dexp

1 file changed

+1
-2
lines changed

clang-tools-extra/clangd/index/dex/dexp/Dexp.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ namespace clang {
2626
namespace clangd {
2727
namespace {
2828

29-
llvm::cl::opt<std::string> IndexPath("index-path",
30-
llvm::cl::desc("Path to the index"),
29+
llvm::cl::opt<std::string> IndexPath(llvm::cl::desc("<INDEX FILE>"),
3130
llvm::cl::Positional, llvm::cl::Required);
3231

3332
llvm::cl::opt<std::string>

0 commit comments

Comments
 (0)