forked from OSchip/llvm-project
parent
721b71d532
commit
79d9a6964d
|
@ -351,8 +351,10 @@ int main(int argc, const char **argv) {
|
|||
"together with <file>s, the files are edited in-place. Otherwise, the\n"
|
||||
"result is written to the standard output.\n");
|
||||
|
||||
if (Help)
|
||||
if (Help) {
|
||||
cl::PrintHelpMessage();
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (DumpConfig) {
|
||||
llvm::Expected<clang::format::FormatStyle> FormatStyle =
|
||||
|
|
|
@ -931,8 +931,10 @@ int main(int argc, const char **argv) {
|
|||
"one. The resulting file can also be unbundled into different files by \n"
|
||||
"this tool if -unbundle is provided.\n");
|
||||
|
||||
if (Help)
|
||||
if (Help) {
|
||||
cl::PrintHelpMessage();
|
||||
return 0;
|
||||
}
|
||||
|
||||
bool Error = false;
|
||||
if (Unbundle) {
|
||||
|
|
Loading…
Reference in New Issue