Skip to content

Commit

Permalink
fix: empty struct error
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-roland committed Jun 20, 2024
1 parent 9c97908 commit c6abf61
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/zenoh-pico/api/handlers.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,10 @@

#define _Z_CHANNEL_DEFINE_DUMMY(item_name, kind_name) \
typedef struct { \
uint8_t _foo; \
} z_owned_##kind_name##_handler_##item_name##_t; \
typedef struct { \
uint8_t _foo; \
} z_loaned_##kind_name##_handler_##item_name##_t; \
void *z_##kind_name##_handler_##item_name##_loan(); \
void *z_##kind_name##_handler_##item_name##_move(); \
Expand Down

0 comments on commit c6abf61

Please sign in to comment.