aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/ext/server.h
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-11-06 12:50:14 -0800
committerGravatar Craig Tiller <ctiller@google.com>2017-11-06 12:50:14 -0800
commit0be9ad440878b94d9a68f35992c23e7f99375dbc (patch)
tree9ce37a5e50f1ee47df6d42ef3e44d63160e8d0dc /src/node/ext/server.h
parentc60659ad023d01f8d0f6ad0f87fefbd3740002d0 (diff)
parente759d2ad7abdb0702970eeccc5f033ff4b2a4c7f (diff)
Merge github.com:grpc/grpc into lfe3
Diffstat (limited to 'src/node/ext/server.h')
-rw-r--r--src/node/ext/server.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/node/ext/server.h b/src/node/ext/server.h
index 66b3ac5267..2a0bf19ba8 100644
--- a/src/node/ext/server.h
+++ b/src/node/ext/server.h
@@ -41,12 +41,12 @@ class Server : public Nan::ObjectWrap {
void DestroyWrappedServer();
private:
- explicit Server(grpc_server *server);
+ explicit Server(grpc_server* server);
~Server();
// Prevent copying
- Server(const Server &);
- Server &operator=(const Server &);
+ Server(const Server&);
+ Server& operator=(const Server&);
void ShutdownServer();
@@ -56,11 +56,11 @@ class Server : public Nan::ObjectWrap {
static NAN_METHOD(Start);
static NAN_METHOD(TryShutdown);
static NAN_METHOD(ForceShutdown);
- static Nan::Callback *constructor;
+ static Nan::Callback* constructor;
static Nan::Persistent<v8::FunctionTemplate> fun_tpl;
- grpc_server *wrapped_server;
- grpc_completion_queue *shutdown_queue;
+ grpc_server* wrapped_server;
+ grpc_completion_queue* shutdown_queue;
};
} // namespace node