diff options
author | danlark <danlark@yandex-team.ru> | 2022-02-10 16:46:08 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:08 +0300 |
commit | 3426a9bc7f169ae9da54cef557ad2a33f6e8eee0 (patch) | |
tree | 26154e1e9990f1bb4525d3e3fb5b6dac2c2c1da2 /tools/rorescompiler/main.cpp | |
parent | cb68f224c46a8ee52ac3fdd2a32534b8bb8dc134 (diff) | |
download | ydb-3426a9bc7f169ae9da54cef557ad2a33f6e8eee0.tar.gz |
Restoring authorship annotation for <danlark@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'tools/rorescompiler/main.cpp')
-rw-r--r-- | tools/rorescompiler/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/rorescompiler/main.cpp b/tools/rorescompiler/main.cpp index 7ca5346e4c..2cff76725b 100644 --- a/tools/rorescompiler/main.cpp +++ b/tools/rorescompiler/main.cpp @@ -5,7 +5,7 @@ #include <util/stream/file.h> #include <util/string/escape.h> #include <util/string/vector.h> -#include <util/string/split.h> +#include <util/string/split.h> using namespace NResource; @@ -32,7 +32,7 @@ int main(int argc, char** argv) { out << "#include <library/cpp/resource/registry.h>\n\n"; while (*argv) { - TVector<TString> items = StringSplitter(TString(*(argv))).Split('=').Limit(2).ToList<TString>(); + TVector<TString> items = StringSplitter(TString(*(argv))).Split('=').Limit(2).ToList<TString>(); GenOne(items[0], items[1], out); argv++; } |