Skip to content

Commit 15eb6ef

Browse files
committed
fix include path
Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
1 parent f092412 commit 15eb6ef

17 files changed

+21
-22
lines changed

autoware_utils_geometry/include/autoware_utils_geometry/alt_geometry.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#ifndef AUTOWARE_UTILS_GEOMETRY__ALT_GEOMETRY_HPP_
1616
#define AUTOWARE_UTILS_GEOMETRY__ALT_GEOMETRY_HPP_
1717

18-
#include "autoware_utils_geometry/geometry/boost_geometry.hpp"
18+
#include "autoware_utils_geometry/boost_geometry.hpp"
1919

2020
#include <list>
2121
#include <optional>

autoware_utils_geometry/include/autoware_utils_geometry/boost_polygon_utils.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#ifndef AUTOWARE_UTILS_GEOMETRY__BOOST_POLYGON_UTILS_HPP_
1616
#define AUTOWARE_UTILS_GEOMETRY__BOOST_POLYGON_UTILS_HPP_
1717

18-
#include "autoware_utils_geometry/geometry/boost_geometry.hpp"
18+
#include <autoware_utils_geometry/boost_geometry.hpp>
1919

2020
#include <autoware_perception_msgs/msg/detected_object.hpp>
2121
#include <autoware_perception_msgs/msg/predicted_object.hpp>

autoware_utils_geometry/include/autoware_utils_geometry/ear_clipping.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#ifndef AUTOWARE_UTILS_GEOMETRY__EAR_CLIPPING_HPP_
1616
#define AUTOWARE_UTILS_GEOMETRY__EAR_CLIPPING_HPP_
1717

18-
#include "autoware_utils_geometry/geometry/alt_geometry.hpp"
18+
#include "autoware_utils_geometry/alt_geometry.hpp"
1919

2020
#include <optional>
2121
#include <vector>

autoware_utils_geometry/include/autoware_utils_geometry/geometry.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#ifndef AUTOWARE_UTILS_GEOMETRY__GEOMETRY_HPP_
1616
#define AUTOWARE_UTILS_GEOMETRY__GEOMETRY_HPP_
1717

18-
#include "autoware_utils_geometry/geometry/boost_geometry.hpp"
18+
#include "autoware_utils_geometry/boost_geometry.hpp"
1919
#include "autoware_utils_geometry/msg/covariance.hpp"
2020
#include "autoware_utils_math/constants.hpp"
2121
#include "autoware_utils_math/normalization.hpp"

autoware_utils_geometry/include/autoware_utils_geometry/gjk_2d.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#ifndef AUTOWARE_UTILS_GEOMETRY__GJK_2D_HPP_
1616
#define AUTOWARE_UTILS_GEOMETRY__GJK_2D_HPP_
1717

18-
#include "autoware_utils_geometry/geometry/boost_geometry.hpp"
18+
#include <autoware_utils_geometry/boost_geometry.hpp>
1919

2020
namespace autoware_utils_geometry::gjk
2121
{

autoware_utils_geometry/include/autoware_utils_geometry/random_concave_polygon.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#ifndef AUTOWARE_UTILS_GEOMETRY__RANDOM_CONCAVE_POLYGON_HPP_
1616
#define AUTOWARE_UTILS_GEOMETRY__RANDOM_CONCAVE_POLYGON_HPP_
1717

18-
#include <autoware_utils_geometry/geometry/geometry.hpp>
18+
#include <autoware_utils_geometry/geometry.hpp>
1919

2020
#include <optional>
2121
#include <vector>

autoware_utils_geometry/include/autoware_utils_geometry/random_convex_polygon.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#ifndef AUTOWARE_UTILS_GEOMETRY__RANDOM_CONVEX_POLYGON_HPP_
1616
#define AUTOWARE_UTILS_GEOMETRY__RANDOM_CONVEX_POLYGON_HPP_
1717

18-
#include <autoware_utils_geometry/geometry/geometry.hpp>
18+
#include <autoware_utils_geometry/geometry.hpp>
1919

2020
namespace autoware_utils_geometry
2121
{

autoware_utils_geometry/include/autoware_utils_geometry/sat_2d.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#ifndef AUTOWARE_UTILS_GEOMETRY__SAT_2D_HPP_
1616
#define AUTOWARE_UTILS_GEOMETRY__SAT_2D_HPP_
1717

18-
#include "autoware_utils_geometry/geometry/boost_geometry.hpp"
18+
#include <autoware_utils_geometry/boost_geometry.hpp>
1919

2020
namespace autoware_utils_geometry::sat
2121
{

autoware_utils_geometry/src/geometry/alt_geometry.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "autoware_utils_geometry/geometry/alt_geometry.hpp"
15+
#include "autoware_utils_geometry/alt_geometry.hpp"
1616

1717
#include <algorithm>
1818
#include <limits>

autoware_utils_geometry/src/geometry/boost_polygon_utils.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "autoware_utils_geometry/geometry/boost_polygon_utils.hpp"
15+
#include "autoware_utils_geometry/boost_polygon_utils.hpp"
1616

17-
#include "autoware_utils_geometry/geometry/geometry.hpp"
17+
#include "autoware_utils_geometry/geometry.hpp"
1818

1919
#include <boost/geometry/geometry.hpp>
2020

autoware_utils_geometry/src/geometry/ear_clipping.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "autoware_utils_geometry/geometry/ear_clipping.hpp"
15+
#include "autoware_utils_geometry/ear_clipping.hpp"
1616

1717
#include <algorithm>
1818
#include <limits>

autoware_utils_geometry/src/geometry/geometry.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "autoware_utils_geometry/geometry/geometry.hpp"
15+
#include "autoware_utils_geometry/geometry.hpp"
1616

17-
#include "autoware_utils_geometry/geometry/gjk_2d.hpp"
17+
#include "autoware_utils_geometry/gjk_2d.hpp"
1818

1919
#include <Eigen/Geometry>
2020

autoware_utils_geometry/src/geometry/gjk_2d.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "autoware_utils_geometry/geometry/gjk_2d.hpp"
16-
17-
#include "autoware_utils_geometry/geometry/boost_geometry.hpp"
15+
#include <autoware_utils_geometry/boost_geometry.hpp>
16+
#include <autoware_utils_geometry/gjk_2d.hpp>
1817

1918
#include <boost/geometry/algorithms/equals.hpp>
2019

autoware_utils_geometry/src/geometry/pose_deviation.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "autoware_utils_geometry/geometry/pose_deviation.hpp"
15+
#include "autoware_utils_geometry/pose_deviation.hpp"
1616

1717
#include "autoware_utils_math/normalization.hpp"
1818

autoware_utils_geometry/src/geometry/random_concave_polygon.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "autoware_utils_geometry/geometry/random_concave_polygon.hpp"
15+
#include "autoware_utils_geometry/random_concave_polygon.hpp"
1616

17-
#include "autoware_utils_geometry/geometry/boost_geometry.hpp"
17+
#include "autoware_utils_geometry/boost_geometry.hpp"
1818

1919
#include <boost/geometry/algorithms/convex_hull.hpp>
2020
#include <boost/geometry/algorithms/correct.hpp>

autoware_utils_geometry/src/geometry/random_convex_polygon.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "autoware_utils_geometry/geometry/random_convex_polygon.hpp"
15+
#include "autoware_utils_geometry/random_convex_polygon.hpp"
1616

1717
#include <boost/geometry/algorithms/correct.hpp>
1818

autoware_utils_geometry/src/geometry/sat_2d.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "autoware_utils_geometry/geometry/sat_2d.hpp"
15+
#include <autoware_utils_geometry/sat_2d.hpp>
1616

1717
#include <utility>
1818

0 commit comments

Comments
 (0)