aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cpp/client
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-02-23 13:55:15 -0800
committerGravatar Craig Tiller <ctiller@google.com>2015-02-23 13:55:15 -0800
commite4fe844b67191b46ee5d1942714e43cb2e12672b (patch)
tree42a8c5ff13cab35ebc15ac2d1f767a6eaa2fa431 /src/cpp/client
parentb0a32fc72d6c4ad667a57a98c38fed507d326462 (diff)
s/CreateChannel/CreateChannelDeprecated
For the 2-argument version of CreateChannel. This is a temporary step until #711 is ready to roll out.
Diffstat (limited to 'src/cpp/client')
-rw-r--r--src/cpp/client/create_channel.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpp/client/create_channel.cc b/src/cpp/client/create_channel.cc
index acf51cb90b..583e072799 100644
--- a/src/cpp/client/create_channel.cc
+++ b/src/cpp/client/create_channel.cc
@@ -40,8 +40,8 @@
namespace grpc {
class ChannelArguments;
-std::shared_ptr<ChannelInterface> CreateChannel(const grpc::string &target,
- const ChannelArguments &args) {
+std::shared_ptr<ChannelInterface> CreateChannelDeprecated(
+ const grpc::string &target, const ChannelArguments &args) {
return std::shared_ptr<ChannelInterface>(new Channel(target, args));
}