Skip to content

Commit

Permalink
Update include/zenoh-pico/api/macros.h
Browse files Browse the repository at this point in the history
Co-authored-by: Alexander Bushnev <[email protected]>
  • Loading branch information
DenisBiryukov91 and sashacmc authored Sep 12, 2024
1 parent 5f7f850 commit 1353323
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/zenoh-pico/api/macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -423,8 +423,8 @@ inline z_loaned_condvar_t* z_loan_mut(z_owned_condvar_t& x) { return z_condvar_l
inline z_loaned_reply_err_t* z_loan_mut(z_owned_reply_err_t& x) { return z_reply_err_loan_mut(&x); }

// z_drop definition
inline void z_drop(z_moved_session_t* v) { return z_session_drop(v); }
inline void z_drop(z_moved_publisher_t* v) { return z_publisher_drop(v); }
inline void z_drop(z_moved_session_t* v) { z_session_drop(v); }
inline void z_drop(z_moved_publisher_t* v) { z_publisher_drop(v); }
inline void z_drop(z_moved_keyexpr_t* v) { z_keyexpr_drop(v); }
inline void z_drop(z_moved_config_t* v) { z_config_drop(v); }
inline void z_drop(z_moved_subscriber_t* v) { return z_subscriber_drop(v); }
Expand Down

0 comments on commit 1353323

Please sign in to comment.