aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/interop/interop_client.h
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2016-06-15 10:50:23 -0700
committerGravatar Vijay Pai <vpai@google.com>2016-06-15 10:50:23 -0700
commit9aa5f23645b624f22ef66150600bd1772c8d2654 (patch)
tree21f2fa4784b1ae41af1396d6e9278d3d5f2ed8b5 /test/cpp/interop/interop_client.h
parentefa8430e39be4c3fe12085846b044a2e5de5cbe9 (diff)
Switch out a using with a typedef
Diffstat (limited to 'test/cpp/interop/interop_client.h')
-rw-r--r--test/cpp/interop/interop_client.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/cpp/interop/interop_client.h b/test/cpp/interop/interop_client.h
index ae75762bb8..c8d6810c12 100644
--- a/test/cpp/interop/interop_client.h
+++ b/test/cpp/interop/interop_client.h
@@ -45,9 +45,9 @@ namespace grpc {
namespace testing {
// Function pointer for custom checks.
-using CheckerFn =
- std::function<void(const InteropClientContextInspector&,
- const SimpleRequest*, const SimpleResponse*)>;
+typedef std::function<void(const InteropClientContextInspector&,
+ const SimpleRequest*, const SimpleResponse*)>
+ CheckerFn;
class InteropClient {
public: