File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -306,21 +306,18 @@ TreeNode::subscribeToStatusChange(TreeNode::StatusChangeCallback callback)
306306 return _p->state_change_signal .subscribe (std::move (callback));
307307}
308308
309- // NOLINTNEXTLINE(performance-unnecessary-value-param)
310309void TreeNode::setPreTickFunction (PreTickCallback callback)
311310{
312311 const std::unique_lock lk (_p->callback_injection_mutex );
313312 _p->pre_tick_callback = std::move (callback);
314313}
315314
316- // NOLINTNEXTLINE(performance-unnecessary-value-param)
317315void TreeNode::setPostTickFunction (PostTickCallback callback)
318316{
319317 const std::unique_lock lk (_p->callback_injection_mutex );
320318 _p->post_tick_callback = std::move (callback);
321319}
322320
323- // NOLINTNEXTLINE(performance-unnecessary-value-param)
324321void TreeNode::setTickMonitorCallback (TickMonitorCallback callback)
325322{
326323 const std::unique_lock lk (_p->callback_injection_mutex );
You can’t perform that action at this time.
0 commit comments