@@ -24,12 +24,12 @@ API API::traits<Gizmo>::api() {
2424 return {" viam" , " component" , " gizmo" };
2525}
2626
27- Gizmo::Gizmo (std::string name) : Component(std::move(name)) {};
27+ Gizmo::Gizmo (std::string name) : Component(std::move(name)){};
2828
2929/* Gizmo server methods */
3030
3131GizmoServer::GizmoServer (std::shared_ptr<ResourceManager> manager)
32- : ResourceServer(std::move(manager)) {};
32+ : ResourceServer(std::move(manager)){};
3333
3434grpc::Status GizmoServer::DoOne (grpc::ServerContext* context,
3535 const DoOneRequest* request,
@@ -170,9 +170,7 @@ grpc::Status GizmoServer::DoTwo(::grpc::ServerContext* context,
170170/* Gizmo client methods */
171171
172172GizmoClient::GizmoClient (std::string name, std::shared_ptr<grpc::Channel> channel)
173- : Gizmo(std::move(name)),
174- stub_(GizmoService::NewStub(channel)),
175- channel_(std::move(channel)) {};
173+ : Gizmo(std::move(name)), stub_(GizmoService::NewStub(channel)), channel_(std::move(channel)){};
176174
177175bool GizmoClient::do_one (std::string arg1) {
178176 return make_client_helper (this , *stub_, &StubType::DoOne)
0 commit comments