Skip to content

Commit

Permalink
Drop non-needed includes
Browse files Browse the repository at this point in the history
  • Loading branch information
RainerKuemmerle committed Apr 20, 2024
1 parent 3488834 commit a20c62b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions g2o/apps/g2o_simulator/simulator.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ class G2O_SIMULATOR_API BaseRobot {
class G2O_SIMULATOR_API World {
public:
World() = default;
World(World const&) = delete;
World& operator=(World const&) = delete;

OptimizableGraph& graph() { return graph_; }
const OptimizableGraph& graph() const { return graph_; }
void addRobot(std::unique_ptr<BaseRobot> robot);
Expand Down
1 change: 0 additions & 1 deletion unit_test/general/robust_kernel_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
#include "g2o/core/robust_kernel_factory.h"
#include "g2o/core/robust_kernel_impl.h"
#include "g2o/stuff/misc.h"
#include "unit_test/test_helper/allocate_optimizer.h"

using namespace testing; // NOLINT

Expand Down

0 comments on commit a20c62b

Please sign in to comment.