diff options
author | Arslan Urtashev <[email protected]> | 2022-02-10 16:48:55 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:48:55 +0300 |
commit | b97740540e7302cec9efa181e106ae1990a0cc1c (patch) | |
tree | 1a2a0bfe523c3272d207e2d75254a41d3945a3bb /tools | |
parent | 31789673dc3562bc7540e00fe031ba84ae282c24 (diff) |
Restoring authorship annotation for Arslan Urtashev <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/enum_parser/enum_parser/main.cpp | 6 | ||||
-rw-r--r-- | tools/ya.make | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tools/enum_parser/enum_parser/main.cpp b/tools/enum_parser/enum_parser/main.cpp index 0943c69c1da..cc7fafc0c42 100644 --- a/tools/enum_parser/enum_parser/main.cpp +++ b/tools/enum_parser/enum_parser/main.cpp @@ -34,7 +34,7 @@ void WriteHeader(const TString& headerName, IOutputStream& out, IOutputStream* h out << "#include <util/generic/string.h>\n"; out << "#include <util/generic/vector.h>\n"; out << "#include <util/generic/map.h>\n"; - out << "#include <util/generic/serialized_enum.h>\n"; + out << "#include <util/generic/serialized_enum.h>\n"; out << "#include <util/string/cast.h>\n"; out << "#include <util/stream/output.h>\n\n"; @@ -339,13 +339,13 @@ void GenerateEnum( out << " return names.AllEnumNames();\n"; out << " }\n\n"; - // template<> GetEnumNames<EnumType> + // template<> GetEnumNames<EnumType> out << " template<>\n"; out << " TMappedDictView<" << name << ", TString> GetEnumNamesImpl<" << name << ">() {\n"; out << " const " << nsName << "::TNameBufs& names = " << nsName << "::TNameBufs::Instance();\n"; out << " return names.EnumNames();\n"; out << " }\n\n"; - + // template<> GetEnumAllCppNames, see IGNIETFERRO-534 out << " template<>\n"; out << " const TVector<TString>& GetEnumAllCppNamesImpl<" << name << ">() {\n"; diff --git a/tools/ya.make b/tools/ya.make index 51a6b8b4263..577b1359718 100644 --- a/tools/ya.make +++ b/tools/ya.make @@ -179,7 +179,7 @@ RECURSE( ylzocat yson_pp zk_client - idx_print + idx_print ) IF (NOT OS_WINDOWS) |