diff options
author | danlark <danlark@yandex-team.ru> | 2022-02-10 16:46:10 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:10 +0300 |
commit | baa58daefa91fde4b4769facdbd2903763b9c6a8 (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /contrib/tools/protoc/plugins/cpp_styleguide/cpp_styleguide.cpp | |
parent | 3426a9bc7f169ae9da54cef557ad2a33f6e8eee0 (diff) | |
download | ydb-baa58daefa91fde4b4769facdbd2903763b9c6a8.tar.gz |
Restoring authorship annotation for <danlark@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/tools/protoc/plugins/cpp_styleguide/cpp_styleguide.cpp')
-rw-r--r-- | contrib/tools/protoc/plugins/cpp_styleguide/cpp_styleguide.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/tools/protoc/plugins/cpp_styleguide/cpp_styleguide.cpp b/contrib/tools/protoc/plugins/cpp_styleguide/cpp_styleguide.cpp index 4595442989..cd96aa0565 100644 --- a/contrib/tools/protoc/plugins/cpp_styleguide/cpp_styleguide.cpp +++ b/contrib/tools/protoc/plugins/cpp_styleguide/cpp_styleguide.cpp @@ -157,19 +157,19 @@ namespace NPlugins { switch(desc->cpp_type()) { case FieldDescriptor::CPPTYPE_STRING: - printer->Print(TString::Join("::google::protobuf::io::PrintJSONString(out, ", scopeName , ");\n").data()); + printer->Print(TString::Join("::google::protobuf::io::PrintJSONString(out, ", scopeName , ");\n").data()); break; case FieldDescriptor::CPPTYPE_ENUM: - printer->Print(TString::Join("out << int(", scopeName, ");\n").data()); + printer->Print(TString::Join("out << int(", scopeName, ");\n").data()); break; case FieldDescriptor::CPPTYPE_MESSAGE: - printer->Print(TString::Join(scopeName, ".PrintJSON(out);\n").data()); + printer->Print(TString::Join(scopeName, ".PrintJSON(out);\n").data()); break; default: if (isKey) { - printer->Print(TString::Join("out << '\"' << ", scopeName, " << '\"';\n").data()); + printer->Print(TString::Join("out << '\"' << ", scopeName, " << '\"';\n").data()); } else { - printer->Print(TString::Join("out << ", scopeName, ";\n").data()); + printer->Print(TString::Join("out << ", scopeName, ";\n").data()); } } } |