[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
This commit is contained in:
Kirill Bobyrev 2020-04-15 13:27:30 +02:00
parent 3f7f06888b
commit f058673397

View File

@ -26,8 +26,7 @@ namespace clang {
namespace clangd { namespace clangd {
namespace { namespace {
llvm::cl::opt<std::string> IndexPath("index-path", llvm::cl::opt<std::string> IndexPath(llvm::cl::desc("<INDEX FILE>"),
llvm::cl::desc("Path to the index"),
llvm::cl::Positional, llvm::cl::Required); llvm::cl::Positional, llvm::cl::Required);
llvm::cl::opt<std::string> llvm::cl::opt<std::string>