aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authorasa <asa@yandex-team.ru>2022-02-10 16:50:54 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:54 +0300
commit74f28e6c6fad7c4b75d97dcc239d29df04e525cb (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp
parentc3206fd73f199b90b23e450b1d30b63c8e13a5a6 (diff)
downloadydb-74f28e6c6fad7c4b75d97dcc239d29df04e525cb.tar.gz
Restoring authorship annotation for <asa@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/getopt/small/opt.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/getopt/small/opt.cpp b/library/cpp/getopt/small/opt.cpp
index 2c90306e16..744501765c 100644
--- a/library/cpp/getopt/small/opt.cpp
+++ b/library/cpp/getopt/small/opt.cpp
@@ -53,14 +53,14 @@ Opt::Opt(int argc, const char* argv[], const char* optString, const Ion* longOpt
int Opt::Get() {
return Get(nullptr);
-}
-
+}
+
int Opt::Get(int* longOptionIndex) {
if (GotError_)
return EOF;
Arg = nullptr;
-
+
try {
bool r = OptsParser_->Next();
Ind = (int)OptsParser_->Pos_;