Skip to content

Commit 94d2f15

Browse files
uncrustify fixes
1 parent 073feb6 commit 94d2f15

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

fuse_core/include/fuse_core/callback_wrapper.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ class CallbackAdapter : public rclcpp::Waitable
166166
/**
167167
* @brief tell the CallbackGroup that this waitable is ready to execute anything
168168
*/
169-
bool is_ready(rcl_wait_set_t const& wait_set) override;
169+
bool is_ready(rcl_wait_set_t const & wait_set) override;
170170

171171

172172
/**
@@ -179,7 +179,7 @@ class CallbackAdapter : public rclcpp::Waitable
179179

180180
std::shared_ptr<void> take_data() override;
181181

182-
void execute(std::shared_ptr<void> const& data) override;
182+
void execute(std::shared_ptr<void> const & data) override;
183183

184184
void addCallback(const std::shared_ptr<CallbackWrapperBase> & callback);
185185

fuse_core/src/callback_wrapper.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ size_t CallbackAdapter::get_number_of_ready_guard_conditions() {return 1;}
5959
/**
6060
* @brief tell the CallbackGroup that this waitable is ready to execute anything
6161
*/
62-
bool CallbackAdapter::is_ready(rcl_wait_set_t const& wait_set)
62+
bool CallbackAdapter::is_ready(rcl_wait_set_t const & wait_set)
6363
{
6464
(void) wait_set;
6565
return !callback_queue_.empty();
@@ -107,7 +107,7 @@ std::shared_ptr<void> CallbackAdapter::take_data()
107107
* @brief hook that allows the rclcpp::waitables interface to run the next callback
108108
*
109109
*/
110-
void CallbackAdapter::execute(std::shared_ptr<void> const& data)
110+
void CallbackAdapter::execute(std::shared_ptr<void> const & data)
111111
{
112112
if (!data) {
113113
throw std::runtime_error("'data' is empty");

0 commit comments

Comments
 (0)