diff options
author | dcherednik <dcherednik@ydb.tech> | 2023-03-20 19:46:45 +0300 |
---|---|---|
committer | dcherednik <dcherednik@ydb.tech> | 2023-03-20 19:46:45 +0300 |
commit | a9934a6b07541beba0b85d08185a14daae1ae2a6 (patch) | |
tree | fc6511deadf8067c45013e0480c0a405cefab42e | |
parent | e619d6fcd974848970e32d14fa55508931ac359f (diff) | |
download | ydb-a9934a6b07541beba0b85d08185a14daae1ae2a6.tar.gz |
missed inline specifier
-rw-r--r-- | ydb/core/http_proxy/json_proto_conversion.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/http_proxy/json_proto_conversion.h b/ydb/core/http_proxy/json_proto_conversion.h index e6c0d6d211..13f30e46c0 100644 --- a/ydb/core/http_proxy/json_proto_conversion.h +++ b/ydb/core/http_proxy/json_proto_conversion.h @@ -15,7 +15,7 @@ namespace NKikimr::NHttpProxy { -TString ProxyFieldNameConverter(const google::protobuf::FieldDescriptor& descriptor) { +inline TString ProxyFieldNameConverter(const google::protobuf::FieldDescriptor& descriptor) { return NNaming::SnakeToCamelCase(descriptor.name()); } |