Merge pull request #126 from ros2/fix_build
Add const to do_inter_process_publish
This commit is contained in:
commit
c8e127b312
1 changed files with 1 additions and 1 deletions
|
@ -311,7 +311,7 @@ public:
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void
|
void
|
||||||
do_inter_process_publish(MessageT * msg)
|
do_inter_process_publish(const MessageT * msg)
|
||||||
{
|
{
|
||||||
auto status = rmw_publish(publisher_handle_, msg);
|
auto status = rmw_publish(publisher_handle_, msg);
|
||||||
if (status != RMW_RET_OK) {
|
if (status != RMW_RET_OK) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue