Skip to content
Open
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 @@ -55,7 +55,9 @@ bool get_ordered_interfaces(
throw std::range_error(
"Capacity of ordered_interfaces (" + std::to_string(ordered_interfaces.capacity()) +
") has to be equal or higher as size of ordered_names (" +
std::to_string(ordered_names.size()) + ") for realtime reasons.");
std::to_string(ordered_names.size()) +
") for realtime reasons. Please reserve sufficient space in the on_configure method to avoid "
"allocating memory in real-time loop.");
}
for (const auto & name : ordered_names)
{
Expand Down
Loading