Skip to content

Commit 2442051

Browse files
committed
Cannot use namespace as argument name.
Signed-off-by: Michel Hidalgo <[email protected]>
1 parent 42bb43b commit 2442051

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rmw/include/rmw/rmw.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ rmw_get_serialization_format(void);
134134
/**
135135
* This function can fail, and therefore return `NULL`, if:
136136
* - name is not a valid non-null node name
137-
* - namespace is not a valid non-null namespace
137+
* - namespace_ is not a valid non-null namespace
138138
* - context is not valid i.e. it is zero-initialized, or
139139
* its implementation identifier does not match that of
140140
* this API implementation, or has been invalidated by
@@ -155,7 +155,7 @@ rmw_get_serialization_format(void);
155155
*
156156
* \param[in] context init context that this node should be associated with
157157
* \param[in] name the node name
158-
* \param[in] namespace the node namespace
158+
* \param[in] namespace_ the node namespace
159159
* \param[in] domain_id the id of the domain that the node should join
160160
* \param[in] localhost_only whenever to use loopback only for communication or
161161
* default network interfaces.
@@ -167,7 +167,7 @@ rmw_node_t *
167167
rmw_create_node(
168168
rmw_context_t * context,
169169
const char * name,
170-
const char * namespace,
170+
const char * namespace_,
171171
size_t domain_id,
172172
bool localhost_only);
173173

0 commit comments

Comments
 (0)