Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

One last uncrustify fix for newer uncrustify. #795

Merged
merged 1 commit into from
Apr 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@ getitem(const std::array<T, N> & array, const size_t index)
DEFINE_CXX_API_FOR_C_MESSAGE_SEQUENCE_MEMBER( \
RCUTILS_JOIN(C_INTERFACE_NAME(package_name, interface_type, message_name), __Sequence))

// *INDENT-OFF*

/// Defines C++ helper API for a C service.
#define DEFINE_CXX_API_FOR_C_SERVICE(package_name, interface_type, service_name) \
DEFINE_CXX_API_FOR_C_MESSAGE_MEMBER( \
Expand All @@ -201,6 +203,8 @@ getitem(const std::array<T, N> & array, const size_t index)
C_INTERFACE_NAME(package_name, interface_type, RCUTILS_JOIN(service_name, _Response)); \
};

// *INDENT-ON*

// Extra C++ APIs to homogeneize access to rosidl_runtime_c primitives
DEFINE_CXX_API_FOR_C_MESSAGE_MEMBER(rosidl_runtime_c__String)
DEFINE_CXX_API_FOR_C_MESSAGE_MEMBER(rosidl_runtime_c__U16String)
Expand Down
Loading