Skip to content

Commit

Permalink
Fixing base_camera.h spacing.
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarmendezm committed Dec 18, 2023
1 parent f216d41 commit 822ab4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuse_variables/include/fuse_variables/base_camera.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ class BaseCamera : public FixedSizeVariable<N>
* @param[in] camera_id The id associated to a camera
*/
explicit BaseCamera(const fuse_core::UUID& uuid, const uint64_t& camera_id):
FixedSizeVariable<N>(uuid), id_(camera_id){}
FixedSizeVariable<N>(uuid), id_(camera_id) {}

/**
* @brief Construct a pinhole camera variable given a camera id
*
* @param[in] camera_id The id associated to a camera
*/
explicit BaseCamera(const uint64_t& camera_id):
BaseCamera(fuse_core::uuid::generate(detail::type(), camera_id), camera_id){}
BaseCamera(fuse_core::uuid::generate(detail::type(), camera_id), camera_id) {}

/**
* @brief Read-only access to the id
Expand Down

0 comments on commit 822ab4a

Please sign in to comment.