Skip to content

Commit d0d719a

Browse files
authored
Delete domain_id and localhost_only from node API (#205)
Signed-off-by: Ivan Santiago Paunovic <[email protected]>
1 parent bca97db commit d0d719a

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

rmw_cyclonedds_cpp/src/rmw_node.cpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1216,12 +1216,8 @@ extern "C" rmw_ret_t rmw_context_fini(rmw_context_t * context)
12161216
/////////////////////////////////////////////////////////////////////////////////////////
12171217

12181218
extern "C" rmw_node_t * rmw_create_node(
1219-
rmw_context_t * context, const char * name,
1220-
const char * namespace_, size_t domain_id,
1221-
bool localhost_only)
1219+
rmw_context_t * context, const char * name, const char * namespace_)
12221220
{
1223-
static_cast<void>(domain_id);
1224-
static_cast<void>(localhost_only);
12251221
RET_NULL_X(name, return nullptr);
12261222
RET_NULL_X(namespace_, return nullptr);
12271223
rmw_ret_t ret;

0 commit comments

Comments
 (0)