aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/tools/protoc/plugins/cpp_styleguide/cpp_styleguide.cpp
diff options
context:
space:
mode:
authordanlark <danlark@yandex-team.ru>2022-02-10 16:46:08 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:08 +0300
commit3426a9bc7f169ae9da54cef557ad2a33f6e8eee0 (patch)
tree26154e1e9990f1bb4525d3e3fb5b6dac2c2c1da2 /contrib/tools/protoc/plugins/cpp_styleguide/cpp_styleguide.cpp
parentcb68f224c46a8ee52ac3fdd2a32534b8bb8dc134 (diff)
downloadydb-3426a9bc7f169ae9da54cef557ad2a33f6e8eee0.tar.gz
Restoring authorship annotation for <danlark@yandex-team.ru>. Commit 1 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.cpp10
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 cd96aa05657..4595442989b 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());
}
}
}