aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar David G. Quintas <dgq@google.com>2015-08-11 18:56:10 -0700
committerGravatar David G. Quintas <dgq@google.com>2015-08-11 18:56:10 -0700
commit086a98274424d3c779c12f442310c6e4621e83a2 (patch)
tree1a6200e31d4bfa4d952fec52c7faf90e96049309
parentbc447deaad50756c2e8253bc3347e1731321ddf1 (diff)
Removed "<:" bigram confusing gcc 4.4
Resulted in error: ```test/cpp/end2end/end2end_test.cc:120: error: ‘<::’ cannot begin a template-argument list test/cpp/end2end/end2end_test.cc:120: note: ‘<:’ is an alternate spelling for ‘[’. Insert whitespace between ‘<’ and ‘::’ test/cpp/end2end/end2end_test.cc:120: note: (if you use ‘-fpermissive’ G++ will accept your code) make: *** [objs/opt/test/cpp/end2end/end2end_test.o] Error 1```
-rw-r--r--test/cpp/end2end/end2end_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/end2end/end2end_test.cc b/test/cpp/end2end/end2end_test.cc
index 5f0749daa5..37669815c6 100644
--- a/test/cpp/end2end/end2end_test.cc
+++ b/test/cpp/end2end/end2end_test.cc
@@ -117,7 +117,7 @@ class Proxy : public ::grpc::cpp::test::util::TestService::Service {
}
private:
- std::unique_ptr<::grpc::cpp::test::util::TestService::Stub> stub_;
+ std::unique_ptr< ::grpc::cpp::test::util::TestService::Stub> stub_;
};
class TestServiceImpl : public ::grpc::cpp::test::util::TestService::Service {