Skip to content

Commit

Permalink
tags
Browse files Browse the repository at this point in the history
  • Loading branch information
milyin committed Mar 1, 2024
1 parent 05ead71 commit 250d56d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/zenoh_commons.h
Original file line number Diff line number Diff line change
Expand Up @@ -1062,7 +1062,7 @@ typedef struct zc_owned_liveliness_get_options_t {
*
* Should this invariant be broken when the payload is passed to one of zenoh's `put_owned`
* functions, then the operation will fail (but the passed value will still be consumed).
* tags{c.zc_owned_payload_t, api.buffer.owned}
* tags{c.zc_owned_payload_t}
*/
typedef struct zc_owned_payload_t {
struct z_bytes_t payload;
Expand Down
2 changes: 1 addition & 1 deletion src/commons.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ impl From<Option<&Timestamp>> for z_timestamp_t {
/// functions, then the operation will fail (but the passed value will still be consumed).
#[allow(non_camel_case_types)]
#[repr(C)]
/// tags{c.zc_owned_payload_t, api.buffer.owned}
/// tags{c.zc_owned_payload_t}
pub struct zc_owned_payload_t {
pub payload: z_bytes_t,
pub _owner: [usize; 5],
Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pub static Z_CLIENT: c_uint = WhatAmI::Client as c_uint;
/// tags{c.z_config_mode_key, api.config.mode}
pub static Z_CONFIG_MODE_KEY: &c_char = unsafe { &*(b"mode\0".as_ptr() as *const c_char) };
#[no_mangle]
/// tags{c.z_config_connect_key, api.config.connect}
/// tags{c.z_config_connect_key, api.config.connect.endpoints}
pub static Z_CONFIG_CONNECT_KEY: &c_char =
unsafe { &*(b"connect/endpoints\0".as_ptr() as *const c_char) };
#[no_mangle]
Expand Down

0 comments on commit 250d56d

Please sign in to comment.