Skip to content

Commit

Permalink
update boost geometry includes (valhalla#5117)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrstnbwnkl authored Feb 25, 2025
1 parent 46418a5 commit 44dee56
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* FIXED: Slim down Matrix PBF response [#5066](https://github.com/valhalla/valhalla/pull/5066)
* FIXED: restore ignoring hierarchy limits for bicycle and pedestrian [#5080](https://github.com/valhalla/valhalla/pull/5080)
* FIXED: GCC warning 'template-id not allowed for constructor in C++20' [#5110](https://github.com/valhalla/valhalla/pull/5110)
* FIXED: update deprecated boost geometry headers [#5117](https://github.com/valhalla/valhalla/pull/5117)
* **Enhancement**
* ADDED: Consider smoothness in all profiles that use surface [#4949](https://github.com/valhalla/valhalla/pull/4949)
* ADDED: `admin_crossings` request parameter for `/route` [#4941](https://github.com/valhalla/valhalla/pull/4941)
Expand Down
2 changes: 1 addition & 1 deletion src/mjolnir/graphenhancer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
#include <vector>

#include <boost/format.hpp>
#include <boost/geometry/geometries/multi_polygon.hpp>
#include <boost/geometry/geometries/point_xy.hpp>
#include <boost/geometry/geometries/polygon.hpp>
#include <boost/geometry/io/wkt/wkt.hpp>
#include <boost/geometry/multi/geometries/multi_polygon.hpp>

#include "baldr/datetime.h"
#include "baldr/graphconstants.h"
Expand Down
2 changes: 1 addition & 1 deletion src/mjolnir/valhalla_benchmark_admins.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
#include <vector>

#include <boost/geometry.hpp>
#include <boost/geometry/geometries/multi_polygon.hpp>
#include <boost/geometry/geometries/point_xy.hpp>
#include <boost/geometry/geometries/polygon.hpp>
#include <boost/geometry/io/wkt/wkt.hpp>
#include <boost/geometry/multi/geometries/multi_polygon.hpp>
#include <boost/property_tree/ptree.hpp>
#include <cxxopts.hpp>

Expand Down
2 changes: 1 addition & 1 deletion test/gurka/test_avoids.cc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include "gurka.h"
#include <boost/format.hpp>
#include <boost/geometry.hpp>
#include <boost/geometry/geometries/register/multi_polygon.hpp>
#include <boost/geometry/geometries/register/point.hpp>
#include <boost/geometry/multi/geometries/register/multi_polygon.hpp>
#include <gtest/gtest.h>
#include <valhalla/proto/options.pb.h>

Expand Down
2 changes: 1 addition & 1 deletion test/gurka/test_oneways.cc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "gurka.h"
#include <boost/geometry.hpp>
#include <boost/geometry/geometries/register/multi_polygon.hpp>
#include <boost/geometry/geometries/register/point.hpp>
#include <boost/geometry/multi/geometries/register/multi_polygon.hpp>
#include <gtest/gtest.h>
#include <valhalla/proto/options.pb.h>

Expand Down
2 changes: 1 addition & 1 deletion valhalla/mjolnir/admin.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
#define VALHALLA_MJOLNIR_ADMIN_H_

#include <boost/geometry.hpp>
#include <boost/geometry/geometries/multi_polygon.hpp>
#include <boost/geometry/geometries/point_xy.hpp>
#include <boost/geometry/geometries/polygon.hpp>
#include <boost/geometry/io/wkt/wkt.hpp>
#include <boost/geometry/multi/geometries/multi_polygon.hpp>

#include <cstdint>
#include <sqlite3.h>
Expand Down

0 comments on commit 44dee56

Please sign in to comment.