diff options
| author | William A. Kennington III <wak@google.com> | 2018-01-25 22:17:11 -0800 |
|---|---|---|
| committer | Brad Bishop <bradleyb@fuzziesquirrel.com> | 2018-01-29 18:34:27 +0000 |
| commit | 36a318c56cc4e0faac19ed89afeff15a105b8a58 (patch) | |
| tree | 04b5e6344a6cc7ede95ca299f62546914020e539 | |
| parent | 955629d5776f10e2b6aa358bc995f8c1ec2e2be0 (diff) | |
| download | phosphor-watchdog-36a318c56cc4e0faac19ed89afeff15a105b8a58.tar.gz phosphor-watchdog-36a318c56cc4e0faac19ed89afeff15a105b8a58.zip | |
argument: Continue doesn't take an argument
Change-Id: If36f15254e0883a366f5cece76e87906f420cadb
Signed-off-by: William A. Kennington III <wak@google.com>
| -rw-r--r-- | argument.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/argument.cpp b/argument.cpp index ee66e37..11d9814 100644 --- a/argument.cpp +++ b/argument.cpp @@ -28,7 +28,7 @@ using namespace std::string_literals; const std::string ArgumentParser::trueString = "true"s; const std::string ArgumentParser::emptyString = ""s; -const char* ArgumentParser::optionStr = "p:s:t:c:?h"; +const char* ArgumentParser::optionStr = "p:s:t:ch"; const option ArgumentParser::options[] = { { "path", required_argument, nullptr, 'p' }, |

