diff options
author | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-02-20 14:46:15 -0800 |
---|---|---|
committer | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-02-20 14:46:15 -0800 |
commit | d539f69c7239261e7aee6375565c81b1616b79b2 (patch) | |
tree | 45128d2feb294de0fc48638072ef243b5c3107b8 /test | |
parent | b068809340f158fb14990db31dfd6462bdc15d1f (diff) | |
parent | 5b47818d9301ffd23f67a1433673db43698e941a (diff) |
Merge pull request #663 from vjpai/python
Minor changes for compatibility across different compilers
Diffstat (limited to 'test')
-rw-r--r-- | test/cpp/qps/client.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/qps/client.cc b/test/cpp/qps/client.cc index 666f25054a..11c39eb4f5 100644 --- a/test/cpp/qps/client.cc +++ b/test/cpp/qps/client.cc @@ -127,7 +127,7 @@ void RunTest(const int client_threads, const int client_channels, } std::vector<std::thread> threads; // Will add threads when ready to execute - std::vector<::gpr_histogram *> thread_stats(client_threads); + std::vector< ::gpr_histogram *> thread_stats(client_threads); TestService::Stub *stub_stats = channels[0].get_stub(); grpc::ClientContext context_stats_begin; |