We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7d2785 commit 4ae381fCopy full SHA for 4ae381f
rclcpp/src/rclcpp/executors/multi_threaded_executor.cpp
@@ -28,10 +28,10 @@ MultiThreadedExecutor::MultiThreadedExecutor(
28
const rclcpp::executor::ExecutorArgs & args,
29
size_t number_of_threads,
30
bool yield_before_execute,
31
- std::chrono::nanoseconds next_exec_timeout):
32
- executor::Executor(args),
33
- yield_before_execute_(yield_before_execute),
34
- next_exec_timeout_(next_exec_timeout)
+ std::chrono::nanoseconds next_exec_timeout)
+: executor::Executor(args),
+ yield_before_execute_(yield_before_execute),
+ next_exec_timeout_(next_exec_timeout)
35
{
36
number_of_threads_ = number_of_threads ? number_of_threads : std::thread::hardware_concurrency();
37
if (number_of_threads_ == 0) {
0 commit comments