Skip to content

Commit

Permalink
Merge branch 'bugfix/format' into 'main'
Browse files Browse the repository at this point in the history
Fix formatting

See merge request syntron/support/csr/ifm3d/ifm3d!417
  • Loading branch information
BigBoot committed Oct 30, 2024
2 parents c598001 + a492b01 commit 0cd3def
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/device/src/libifm3d_device/discovery.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ namespace ifm3d
{
shared_this->_CheckTimeout();
}
catch (const std::system_error &err)
catch (const std::system_error& err)
{
if (err.code().category() == asio::system_category() &&
err.code().value() == asio::error::bad_descriptor)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ ifm3d::FrameGrabber::Impl::ImageHandler()
this->new_frame_callback_(frame);
}
}
catch (const ifm3d::Error &ex)
catch (const ifm3d::Error& ex)
{
// We might get empty frames when we requesting only algo debug but
// also enable async notifications or async errors, so we just ignore
Expand All @@ -707,7 +707,7 @@ ifm3d::FrameGrabber::Impl::ImageHandler()
LOG_WARNING("Bad image: {}", ex.message());
}
}
catch (const std::exception &ex)
catch (const std::exception& ex)
{
LOG_WARNING("Bad image: {}", ex.what());
}
Expand Down

0 comments on commit 0cd3def

Please sign in to comment.