Skip to content
Snippets Groups Projects
Commit b09caa96 authored by Craig Tiller's avatar Craig Tiller
Browse files

Remove extraneous explicit

parent 2ee8f0b9
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ class ServerBuilder {
typedef std::unique_ptr<grpc::string> HostString;
template <class T> struct NamedService {
explicit NamedService(T* s) : service(s) {}
explicit NamedService(const grpc::string& h, T *s)
NamedService(const grpc::string& h, T *s)
: host(new grpc::string(h)), service(s) {}
HostString host;
T* service;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment