clang-format

pull/14517/head
makdharma 7 years ago
parent e1a7283dd3
commit 57237443ac
  1. 2
      include/grpcpp/server.h
  2. 6
      test/cpp/codegen/codegen_test_minimal.cc

@ -98,7 +98,7 @@ class Server : public ServerInterface, private GrpcLibraryCodegen {
/// Establish a channel for in-process communication
std::shared_ptr<Channel> InProcessChannel(const ChannelArguments& args);
protected:
protected:
/// Register a service. This call does not take ownership of the service.
/// The service must exist for the lifetime of the Server instance.
bool RegisterService(const grpc::string* host, Service* service) override;

@ -16,15 +16,13 @@
*
*/
#include <gtest/gtest.h>
#include <grpcpp/impl/codegen/completion_queue.h>
#include <gtest/gtest.h>
namespace grpc {
// Unused implementation for the virtual "Next" method.
bool CompletionQueue::Next(void** tag, bool* ok) {
return false;
}
bool CompletionQueue::Next(void** tag, bool* ok) { return false; }
namespace {

Loading…
Cancel
Save