Skip to content

Commit

Permalink
[#555] Fix macOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
elBoberido committed Dec 20, 2024
1 parent f8c372a commit 1f15827
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ int main(void) {
printf("received: %lu, user_header: version = %d, timestamp = %lu\n",
(long unsigned) *payload,
user_header->version,
user_header->timestamp);
(long unsigned) user_header->timestamp);
iox2_sample_drop(sample);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,14 +144,15 @@ inline auto PortFactoryPublishSubscribe<S, Payload, UserHeader>::static_config()
}

template <ServiceType S, typename Payload, typename UserHeader>
inline auto PortFactoryPublishSubscribe<S, Payload, UserHeader>::dynamic_config() const
-> const DynamicConfigPublishSubscribe& {
inline auto
PortFactoryPublishSubscribe<S, Payload, UserHeader>::dynamic_config() const -> const DynamicConfigPublishSubscribe& {
IOX_TODO();
}

template <ServiceType S, typename Payload, typename UserHeader>
inline auto PortFactoryPublishSubscribe<S, Payload, UserHeader>::nodes(
const iox::function<CallbackProgression(NodeState<S>)>& callback) const -> iox::expected<void, NodeListFailure> {
[[maybe_unused]] const iox::function<CallbackProgression(NodeState<S>)>& callback) const
-> iox::expected<void, NodeListFailure> {
IOX_TODO();
}

Expand Down

0 comments on commit 1f15827

Please sign in to comment.