diff options
author | Vlad Yaroslavlev <vladon@vladon.com> | 2022-02-10 16:46:25 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:25 +0300 |
commit | 344ea37b4a345701ab0e67de2266a1c1bd7baf2d (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /contrib/libs/protoc | |
parent | 706b83ed7de5a473436620367af31fc0ceecde07 (diff) | |
download | ydb-344ea37b4a345701ab0e67de2266a1c1bd7baf2d.tar.gz |
Restoring authorship annotation for Vlad Yaroslavlev <vladon@vladon.com>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/protoc')
-rw-r--r-- | contrib/libs/protoc/src/google/protobuf/compiler/perlxs/perlxs_generator.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/libs/protoc/src/google/protobuf/compiler/perlxs/perlxs_generator.cc b/contrib/libs/protoc/src/google/protobuf/compiler/perlxs/perlxs_generator.cc index f823968823..3ae4a39fd5 100644 --- a/contrib/libs/protoc/src/google/protobuf/compiler/perlxs/perlxs_generator.cc +++ b/contrib/libs/protoc/src/google/protobuf/compiler/perlxs/perlxs_generator.cc @@ -961,7 +961,7 @@ PerlXSGenerator::GenerateMessageXSFieldAccessors(const FieldDescriptor* field, " STRLEN len;\n"); if ( type == FieldDescriptor::TYPE_STRING ) { printer.Print(vars, - " TString $value$;\n"); + " TString $value$;\n"); } printer.Print("\n" " CODE:\n"); @@ -1160,7 +1160,7 @@ PerlXSGenerator::GenerateMessageXSCommonMethods(const Descriptor* descriptor, "error_string(svTHIS)\n" " SV * svTHIS\n" " PREINIT:\n" - " TString estr;\n" + " TString estr;\n" "\n" " CODE:\n"); GenerateTypemapInput(descriptor, printer, "THIS"); @@ -1203,7 +1203,7 @@ PerlXSGenerator::GenerateMessageXSCommonMethods(const Descriptor* descriptor, "debug_string(svTHIS)\n" " SV * svTHIS\n" " PREINIT:\n" - " TString dstr;\n" + " TString dstr;\n" "\n" " CODE:\n"); GenerateTypemapInput(descriptor, printer, "THIS"); @@ -1225,7 +1225,7 @@ PerlXSGenerator::GenerateMessageXSCommonMethods(const Descriptor* descriptor, "short_debug_string(svTHIS)\n" " SV * svTHIS\n" " PREINIT:\n" - " TString dstr;\n" + " TString dstr;\n" "\n" " CODE:\n"); GenerateTypemapInput(descriptor, printer, "THIS"); @@ -1913,7 +1913,7 @@ PerlXSGenerator::FieldFromHashrefHelper(io::Printer& printer, "char * str;\n"); if ( field->type() == FieldDescriptor::TYPE_STRING ) { - printer.Print("TString sval;\n"); + printer.Print("TString sval;\n"); } printer.Print(vars, |