From f2764e76f96558761af97d9ab3257342fe23e42f Mon Sep 17 00:00:00 2001 From: Vijay Pai Date: Thu, 3 Nov 2016 11:43:39 -0700 Subject: [PATCH] clang-format --- test/cpp/qps/client_sync.cc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test/cpp/qps/client_sync.cc b/test/cpp/qps/client_sync.cc index 3f402b5c36c..b1e61865e73 100644 --- a/test/cpp/qps/client_sync.cc +++ b/test/cpp/qps/client_sync.cc @@ -138,7 +138,9 @@ class SynchronousUnaryClient final : public SynchronousClient { class SynchronousStreamingClient final : public SynchronousClient { public: SynchronousStreamingClient(const ClientConfig& config) - : SynchronousClient(config), context_(num_threads_), stream_(num_threads_) { + : SynchronousClient(config), + context_(num_threads_), + stream_(num_threads_) { for (size_t thread_idx = 0; thread_idx < num_threads_; thread_idx++) { auto* stub = channels_[thread_idx % channels_.size()].get_stub(); stream_[thread_idx] = stub->StreamingCall(&context_[thread_idx]); @@ -178,7 +180,9 @@ class SynchronousStreamingClient final : public SynchronousClient { // These are both conceptually std::vector but cannot be for old compilers // that expect contained classes to support copy constructors std::vector context_; - std::vector>> stream_; + std::vector< + std::unique_ptr>> + stream_; }; std::unique_ptr CreateSynchronousUnaryClient(