diff options
| author | aep <[email protected]> | 2022-02-10 16:50:55 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:50:55 +0300 | 
| commit | 9af381bde4f1a728d35e96258577599797f8e7c0 (patch) | |
| tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/getopt/small | |
| parent | 08c7e74c9a5733e9386c70df42b3e8ca848f2dc1 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/getopt/small')
| -rw-r--r-- | library/cpp/getopt/small/opt2.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/library/cpp/getopt/small/opt2.cpp b/library/cpp/getopt/small/opt2.cpp index fe9cbe12a14..0cdc774e788 100644 --- a/library/cpp/getopt/small/opt2.cpp +++ b/library/cpp/getopt/small/opt2.cpp @@ -66,7 +66,7 @@ void Opt2::EatArgv(const char* optspec, const char* long_alias) {          char* comma = strchr(s, ',');          if (comma)              *comma = 0; -        if (!eq || (comma && comma < eq))  +        if (!eq || (comma && comma < eq))              ythrow yexception() << "Opt2, long_alias: '=' is expected after " << s;          *eq++ = 0;          if (!*eq || eq[1]) | 
