diff options
author | thegeorg <thegeorg@yandex-team.com> | 2023-03-23 20:04:31 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2023-03-23 20:04:31 +0300 |
commit | c6388d675fc5cccbcb87503a7dd8001beeea7527 (patch) | |
tree | 5d7af797c002ec6b225dfcc6808d7d19ef1f263d /contrib/libs/grpc/include/grpcpp/impl/codegen | |
parent | ee59ba5f5ea78424777da7c44610bad45b16bada (diff) | |
download | ydb-c6388d675fc5cccbcb87503a7dd8001beeea7527.tar.gz |
Better std::to_string replacement in grpc
grpc 1.45.2 introduced `ToString()` method in certain classes.
We want to use global `::ToString()` as `std::to_string()` replacement.
Diffstat (limited to 'contrib/libs/grpc/include/grpcpp/impl/codegen')
-rw-r--r-- | contrib/libs/grpc/include/grpcpp/impl/codegen/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/grpc/include/grpcpp/impl/codegen/config.h b/contrib/libs/grpc/include/grpcpp/impl/codegen/config.h index 85350b6776e..856e3be46fe 100644 --- a/contrib/libs/grpc/include/grpcpp/impl/codegen/config.h +++ b/contrib/libs/grpc/include/grpcpp/impl/codegen/config.h @@ -36,7 +36,7 @@ namespace grpc { // Using grpc::string and grpc::to_string is discouraged in favor of -// TString and ToString. This is only for legacy code using +// TString and ::ToString. This is only for legacy code using // them explictly. typedef TString string; |