Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix paths and libs #30

Merged
merged 2 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
🎨 apply clang-format changes
  • Loading branch information
bilalkah authored and github-actions[bot] committed Aug 26, 2024
commit 28ad17e6c59ef22a4d69885d6fd14c901d085ef8
2 changes: 1 addition & 1 deletion planning/tree_base/rrt/rrt.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
#ifndef PLANNING_TREE_BASE_RRT_STAR_RRT_STAR_H_
#define PLANNING_TREE_BASE_RRT_STAR_RRT_STAR_H_

#include "utility/i_planning.h"
#include "utility/common_tree_base.h"
#include "utility/i_planning.h"

#include <cmath>
#include <iostream>
Expand Down
2 changes: 1 addition & 1 deletion test/test_map.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
*
*/

#include "utility/common_grid_base.h"
#include "test_fixture.h"
#include "utility/common_grid_base.h"
#include <gtest/gtest.h>

namespace planning
Expand Down
2 changes: 1 addition & 1 deletion test/test_rrt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
*
*/

#include "tree_base/rrt/rrt.h"
#include "test_fixture.h"
#include "tree_base/rrt/rrt.h"
#include <gtest/gtest.h>

namespace planning
Expand Down
2 changes: 1 addition & 1 deletion test/test_rrt_star.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
*
*/

#include "tree_base/rrt_star/rrt_star.h"
#include "test_fixture.h"
#include "tree_base/rrt_star/rrt_star.h"
#include <gtest/gtest.h>

namespace planning
Expand Down
2 changes: 1 addition & 1 deletion tools/visualizer/visualizer.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

#include "SDL3/SDL.h"
#include "utility/common_planning.h"
#include "utility/i_planning.h"
#include "utility/common_tree_base.h"
#include "utility/i_planning.h"
#include <cstddef>
#include <functional>
#include <memory>
Expand Down
Loading