aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordcherednik <dcherednik@ydb.tech>2023-03-20 19:46:45 +0300
committerdcherednik <dcherednik@ydb.tech>2023-03-20 19:46:45 +0300
commita9934a6b07541beba0b85d08185a14daae1ae2a6 (patch)
treefc6511deadf8067c45013e0480c0a405cefab42e
parente619d6fcd974848970e32d14fa55508931ac359f (diff)
downloadydb-a9934a6b07541beba0b85d08185a14daae1ae2a6.tar.gz
missed inline specifier
-rw-r--r--ydb/core/http_proxy/json_proto_conversion.h2
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());
}