From 5b47818d9301ffd23f67a1433673db43698e941a Mon Sep 17 00:00:00 2001 From: vjpai Date: Fri, 20 Feb 2015 11:42:42 -0800 Subject: [PATCH] Some compilers not happy with <:: and need < :: instead --- test/cpp/qps/client.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cpp/qps/client.cc b/test/cpp/qps/client.cc index 666f25054ab..11c39eb4f52 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 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;