Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
milyin committed Feb 24, 2025
1 parent e0d4de9 commit 4e40b41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/zenoh-pico/api/macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ inline void z_take(ze_owned_serializer_t* this_, ze_moved_serializer_t* v) { ze_
// z_clone definition
inline z_result_t z_clone(z_owned_bytes_t* dst, const z_loaned_bytes_t* this_) { return z_bytes_clone(dst, this_); }
inline z_result_t z_clone(z_owned_config_t* dst, const z_loaned_config_t* this_) { return z_config_clone(dst, this_); }
inline z_result_t z_clone(z_owned_encoding_t* dst, const const z_loaned_encoding_t* this_) {
inline z_result_t z_clone(z_owned_encoding_t* dst, const z_loaned_encoding_t* this_) {
return z_encoding_clone(dst, this_);
}
inline z_result_t z_clone(z_owned_keyexpr_t* dst, const z_loaned_keyexpr_t* this_) {
Expand Down

0 comments on commit 4e40b41

Please sign in to comment.