Skip to content

Commit

Permalink
Fix compilation on Jazzy
Browse files Browse the repository at this point in the history
  • Loading branch information
Timple committed Jul 2, 2024
1 parent e40e857 commit 780e8ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions explore/src/explore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ Explore::Explore()
std::chrono::milliseconds((uint16_t)(1000.0 / planner_frequency_)),
[this]() { makePlan(); });
// Start exploration right away
exploring_timer_->execute_callback();
makePlan();
}

Explore::~Explore()
Expand Down Expand Up @@ -411,7 +411,7 @@ void Explore::resume()
// Reactivate the timer
exploring_timer_->reset();
// Resume immediately
exploring_timer_->execute_callback();
makePlan();
}

} // namespace explore
Expand Down

0 comments on commit 780e8ac

Please sign in to comment.