s/std::string/grpc::string/g

This commit is contained in:
Craig Tiller 2016-11-08 07:05:33 -08:00
parent ed9132427a
commit 1cb088441a
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@
// IWYU pragma: end_exports
namespace grpc {
std::string Version();
grpc::string Version();
} // namespace grpc
#endif // GRPCXX_GRPCXX_H

View File

@ -39,5 +39,5 @@
#include <grpc++/grpc++.h>
namespace grpc {
std::string Version() { return "${settings.cpp_version}"; }
grpc::string Version() { return "${settings.cpp_version}"; }
}