File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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" );
You can’t perform that action at this time.
0 commit comments