Skip to content

Commit

Permalink
make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
stuqdog committed Nov 19, 2024
1 parent 6200d49 commit 995649d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/viam/sdk/components/component.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace sdk {

Component::Component() : Resource("component") {}

Component::Component(std::string name) : Resource(std::move(name)) {};
Component::Component(std::string name) : Resource(std::move(name)) {}

Name Component::get_resource_name() const {
return Resource::get_resource_name(kComponent);
Expand Down
2 changes: 1 addition & 1 deletion src/viam/sdk/services/service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Name Service::get_resource_name() const {
return Resource::get_resource_name(kService);
}

Service::Service() : Resource("service") {};
Service::Service() : Resource("service") {}

} // namespace sdk
} // namespace viam

0 comments on commit 995649d

Please sign in to comment.