Skip to content

Commit

Permalink
Refs #13803. Fix compilation without STRICT_REALTIME
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo González Moreno <ricardo@richiware.dev>
  • Loading branch information
richiware committed Aug 31, 2023
1 parent 235c89a commit 0de066d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/cpp/rtps/flowcontrol/FlowControllerImpl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1291,15 +1291,19 @@ class FlowControllerImpl : public FlowController
change->writer_info.is_linked.store(false);
}
}
#if HAVE_STRICT_REALTIME
else
{
ret_value = !change->writer_info.is_linked.load();
}
#endif // if HAVE_STRICT_REALTIME
}
#if HAVE_STRICT_REALTIME
else
{
ret_value = !change->writer_info.is_linked.load();
}
#endif // if HAVE_STRICT_REALTIME
--async_mode.writers_interested_in_remove;
}

Expand Down

0 comments on commit 0de066d

Please sign in to comment.