Skip to content

Commit

Permalink
clang format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jckras committed Sep 20, 2024
1 parent 8538266 commit 10a1721
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/camera.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ viam::component::camera::v1::DistortionParameters Camera::to_proto(
return proto;
}

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

bool operator==(const Camera::point_cloud& lhs, const Camera::point_cloud& rhs) {
return lhs.mime_type == rhs.mime_type && lhs.pc == rhs.pc;
Expand Down
2 changes: 1 addition & 1 deletion src/viam/sdk/components/private/camera_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace sdk {
namespace impl {

CameraServer::CameraServer(std::shared_ptr<ResourceManager> manager)
: ResourceServer(std::move(manager)) {};
: ResourceServer(std::move(manager)){};

::grpc::Status CameraServer::DoCommand(::grpc::ServerContext*,
const ::viam::common::v1::DoCommandRequest* request,
Expand Down

0 comments on commit 10a1721

Please sign in to comment.