aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/microbenchmarks/fullstack_fixtures.h
diff options
context:
space:
mode:
authorGravatar Noah Eisen <ncteisen@google.com>2018-02-09 09:34:04 -0800
committerGravatar Noah Eisen <ncteisen@google.com>2018-02-09 09:34:04 -0800
commit4d20a666850b732cf1562487fb5f46ab9654105f (patch)
tree9059162d0f125e02780f506c2476d5d9bbc0eb7d /test/cpp/microbenchmarks/fullstack_fixtures.h
parentcddf6f838aa48c8d5c9f75cee5a8ed8abdcb25b9 (diff)
Run clang fmt
Diffstat (limited to 'test/cpp/microbenchmarks/fullstack_fixtures.h')
-rw-r--r--test/cpp/microbenchmarks/fullstack_fixtures.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/cpp/microbenchmarks/fullstack_fixtures.h b/test/cpp/microbenchmarks/fullstack_fixtures.h
index ce9731b7a6..ab6c194830 100644
--- a/test/cpp/microbenchmarks/fullstack_fixtures.h
+++ b/test/cpp/microbenchmarks/fullstack_fixtures.h
@@ -108,7 +108,8 @@ class FullstackFixture : public BaseFixture {
void AddToLabel(std::ostream& out, benchmark::State& state) {
BaseFixture::AddToLabel(out, state);
out << " polls/iter:"
- << static_cast<double>(grpc_get_cq_poll_num(this->cq()->cq())) / state.iterations();
+ << static_cast<double>(grpc_get_cq_poll_num(this->cq()->cq())) /
+ state.iterations();
}
ServerCompletionQueue* cq() { return cq_.get(); }
@@ -236,7 +237,8 @@ class EndpointPairFixture : public BaseFixture {
void AddToLabel(std::ostream& out, benchmark::State& state) {
BaseFixture::AddToLabel(out, state);
out << " polls/iter:"
- << static_cast<double>(grpc_get_cq_poll_num(this->cq()->cq())) / state.iterations();
+ << static_cast<double>(grpc_get_cq_poll_num(this->cq()->cq())) /
+ state.iterations();
}
ServerCompletionQueue* cq() { return cq_.get(); }