Skip to content

Commit

Permalink
Merge pull request grpc#8359 from dgquintas/clangformatfix
Browse files Browse the repository at this point in the history
Fixed clang-format sanity error
  • Loading branch information
dgquintas committed Oct 12, 2016
2 parents 5ef0c00 + b529997 commit d44144c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/cpp/interop/interop_server.cc
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,9 @@ class TestServiceImpl : public TestService::Service {
}

// Response contains current timestamp. We ignore everything in the request.
Status CacheableUnaryCall(ServerContext* context, const SimpleRequest* request,
SimpleResponse* response) {
Status CacheableUnaryCall(ServerContext* context,
const SimpleRequest* request,
SimpleResponse* response) {
gpr_timespec ts = gpr_now(GPR_CLOCK_PRECISE);
std::string timestamp = std::to_string((long long unsigned)ts.tv_nsec);
response->mutable_payload()->set_body(timestamp.c_str(), timestamp.size());
Expand Down

0 comments on commit d44144c

Please sign in to comment.