Skip to content

Commit

Permalink
Remove another unnecessary debug output
Browse files Browse the repository at this point in the history
Signed-off-by: Michael X. Grey <[email protected]>
  • Loading branch information
mxgrey committed Nov 29, 2023
1 parent 53fe350 commit dd56704
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions rmf_traffic/include/rmf_traffic/agv/Graph.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -469,11 +469,8 @@ class Graph
template<typename DerivedExecutor>
DerivedExecutor& execute(DerivedExecutor& executor) const
{
Executor& base_executor = static_cast<Executor&>(executor);
std::cout << "executing " << this << " : " << &executor
<< " -> " << &base_executor << std::endl;

return static_cast<DerivedExecutor&>(execute(base_executor));
return static_cast<DerivedExecutor&>(
execute(static_cast<Executor&>(executor)));
}

/// Execute this event
Expand Down

0 comments on commit dd56704

Please sign in to comment.