Skip to content

Commit 995649d

Browse files
committed
make linter happy
1 parent 6200d49 commit 995649d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/viam/sdk/components/component.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace sdk {
99

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

12-
Component::Component(std::string name) : Resource(std::move(name)) {};
12+
Component::Component(std::string name) : Resource(std::move(name)) {}
1313

1414
Name Component::get_resource_name() const {
1515
return Resource::get_resource_name(kComponent);

src/viam/sdk/services/service.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Name Service::get_resource_name() const {
1111
return Resource::get_resource_name(kService);
1212
}
1313

14-
Service::Service() : Resource("service") {};
14+
Service::Service() : Resource("service") {}
1515

1616
} // namespace sdk
1717
} // namespace viam

0 commit comments

Comments
 (0)