diff options
author | yazevnul <yazevnul@yandex-team.ru> | 2022-02-10 16:46:46 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:46 +0300 |
commit | 8cbc307de0221f84c80c42dcbe07d40727537e2c (patch) | |
tree | 625d5a673015d1df891e051033e9fcde5c7be4e5 /contrib/tools/protoc/plugins | |
parent | 30d1ef3941e0dc835be7609de5ebee66958f215a (diff) | |
download | ydb-8cbc307de0221f84c80c42dcbe07d40727537e2c.tar.gz |
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/tools/protoc/plugins')
-rw-r--r-- | contrib/tools/protoc/plugins/cpp_styleguide/cpp_styleguide.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/tools/protoc/plugins/cpp_styleguide/cpp_styleguide.cpp b/contrib/tools/protoc/plugins/cpp_styleguide/cpp_styleguide.cpp index cd96aa0565..b54e93a28a 100644 --- a/contrib/tools/protoc/plugins/cpp_styleguide/cpp_styleguide.cpp +++ b/contrib/tools/protoc/plugins/cpp_styleguide/cpp_styleguide.cpp @@ -8,7 +8,7 @@ #include <google/protobuf/stubs/strutil.h> #include "cpp_styleguide.h" -#include <util/stream/output.h> +#include <util/stream/output.h> namespace NProtobuf { namespace NCompiler { @@ -843,7 +843,7 @@ namespace NPlugins { printer.Print("// Yandex JSON extension\n"); TVariables vars; vars["class"] = ClassName(Descriptor_, true); - printer.Print(vars, "inline void $class$::PrintJSON(IOutputStream& out) const {\n"); + printer.Print(vars, "inline void $class$::PrintJSON(IOutputStream& out) const {\n"); printer.Indent(); printer.Print("out << '{';\n"); @@ -894,7 +894,7 @@ namespace NPlugins { TVariables vars; vars["class"] = ClassName(Descriptor_, true); printer.Print("template<>\n"); - printer.Print(vars, "void Out< $class$>(IOutputStream& out, const $class$& msg) {\n"); + printer.Print(vars, "void Out< $class$>(IOutputStream& out, const $class$& msg) {\n"); printer.Print(" out << \"{ \" << msg.ShortUtf8DebugString() << \" }\";\n"); printer.Print("}\n"); printer.Print("// End of Yandex debug output extension\n"); |