diff options
author | Hans Wennborg <hans@hanshq.net> | 2016-04-15 00:23:30 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2016-04-15 00:23:30 +0000 |
commit | 40cfde3cb8f9fd5afe50396487b45b9b5f40a567 (patch) | |
tree | 0ab892cc2a798d05411e9318c94556af033b6c2f /llvm/lib/Option/OptTable.cpp | |
parent | c940f097f414204c49afc901d39b463e23e29d09 (diff) | |
download | llvm-40cfde3cb8f9fd5afe50396487b45b9b5f40a567.zip llvm-40cfde3cb8f9fd5afe50396487b45b9b5f40a567.tar.gz llvm-40cfde3cb8f9fd5afe50396487b45b9b5f40a567.tar.bz2 |
Option parser: class for consuming a joined arg in addition to all remaining args
llvm-svn: 266394
Diffstat (limited to 'llvm/lib/Option/OptTable.cpp')
-rw-r--r-- | llvm/lib/Option/OptTable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Option/OptTable.cpp b/llvm/lib/Option/OptTable.cpp index 09d4ceb..13aa966 100644 --- a/llvm/lib/Option/OptTable.cpp +++ b/llvm/lib/Option/OptTable.cpp @@ -315,7 +315,7 @@ static std::string getOptionHelpName(const OptTable &Opts, OptSpecifier Id) { break; case Option::SeparateClass: case Option::JoinedOrSeparateClass: - case Option::RemainingArgsClass: + case Option::RemainingArgsClass: case Option::RemainingArgsJoinedClass: Name += ' '; // FALLTHROUGH case Option::JoinedClass: case Option::CommaJoinedClass: |