aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar Noah Eisen <ncteisen@gmail.com>2017-06-08 10:08:57 -0700
committerGravatar GitHub <noreply@github.com>2017-06-08 10:08:57 -0700
commit5f5415eae3acb267155a22fa9b612d43c0659676 (patch)
tree42a0e6cbc96ce0d3bcf23801666992278419ecf0 /include
parent5253c8f9a899450397a5e46e4923d01ac9a66a27 (diff)
parent0cd689202d88c5e37481fc5e05db6417f62f6d40 (diff)
Merge pull request #11429 from gkelly/fix-extra-semis
Remove extraneous semicolons.
Diffstat (limited to 'include')
-rw-r--r--include/grpc++/impl/codegen/async_unary_call.h2
-rw-r--r--include/grpc++/impl/codegen/completion_queue.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/grpc++/impl/codegen/async_unary_call.h b/include/grpc++/impl/codegen/async_unary_call.h
index 66843d0da3..4aa4e25a9e 100644
--- a/include/grpc++/impl/codegen/async_unary_call.h
+++ b/include/grpc++/impl/codegen/async_unary_call.h
@@ -139,7 +139,7 @@ class ClientAsyncResponseReader final
// disable operator new
static void* operator new(std::size_t size);
- static void* operator new(std::size_t size, void* p) { return p; };
+ static void* operator new(std::size_t size, void* p) { return p; }
SneakyCallOpSet<CallOpSendInitialMetadata, CallOpSendMessage,
CallOpClientSendClose>
diff --git a/include/grpc++/impl/codegen/completion_queue.h b/include/grpc++/impl/codegen/completion_queue.h
index 0fef12c091..ca757e2a9c 100644
--- a/include/grpc++/impl/codegen/completion_queue.h
+++ b/include/grpc++/impl/codegen/completion_queue.h
@@ -167,7 +167,7 @@ class CompletionQueue : private GrpcLibraryCodegen {
void RegisterAvalanching() {
gpr_atm_no_barrier_fetch_add(&avalanches_in_flight_,
static_cast<gpr_atm>(1));
- };
+ }
void CompleteAvalanching();
protected: