Merge pull request #11429 from gkelly/fix-extra-semis

Remove extraneous semicolons.
pull/11438/head
Noah Eisen 8 years ago committed by GitHub
commit 5f5415eae3
  1. 2
      include/grpc++/impl/codegen/async_unary_call.h
  2. 2
      include/grpc++/impl/codegen/completion_queue.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>

@ -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:

Loading…
Cancel
Save