Merge pull request #3117 from KarrokDC/master

Show help if protoc is called without any arguments
This commit is contained in:
Feng Xiao 2017-05-23 13:39:56 -07:00 committed by GitHub
commit c5125f371d

View file

@ -1012,6 +1012,12 @@ CommandLineInterface::ParseArguments(int argc, const char* const argv[]) {
arguments.push_back(argv[i]);
}
// if no arguments are given, show help
if(arguments.empty()) {
PrintHelpText();
return PARSE_ARGUMENT_DONE_AND_EXIT; // Exit without running compiler.
}
// Iterate through all arguments and parse them.
for (int i = 0; i < arguments.size(); ++i) {
string name, value;