Skip to content

Commit

Permalink
Remove include that breaks compilation for Boost v1.85.0 (#6856)
Browse files Browse the repository at this point in the history
* Remove include that breaks compilation for Boost v1.85.0

* Update CHANGELOG.md

* Fix typo

* Fix issues found by newer clang-tidy version

* Add include to boost filesystem to satisfy Windows compiler
  • Loading branch information
DennisOSRM authored May 6, 2024
1 parent 99809e1 commit 0583582
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
- CHANGED: Update actions/cache to v3. [#6420](https://github.com/Project-OSRM/osrm-backend/pull/6420)
- REMOVED: Drop support of Node 12 & 14. [#6431](https://github.com/Project-OSRM/osrm-backend/pull/6431)
- ADDED: Add 'load directly' mode to default Cucumber test suite. [#6663](https://github.com/Project-OSRM/osrm-backend/pull/6663)
- CHANGED: Fix compilation for Boost 1.85.0 [#6856](https://github.com/Project-OSRM/osrm-backend/pull/6856)
- CHANGED: Drop support for Node 16 [#6855](https://github.com/Project-OSRM/osrm-backend/pull/6855)
- REMOVED: Remove unused AppVeyor files [#6860](https://github.com/Project-OSRM/osrm-backend/pull/6860)
- CHANGED: Upgrade clang-format to version 15 [#6859](https://github.com/Project-OSRM/osrm-backend/pull/6859)
Expand Down
2 changes: 1 addition & 1 deletion include/util/lua_util.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ extern "C"
#include <lualib.h>
}

#include <boost/filesystem/convenience.hpp>
#include <boost/filesystem.hpp>

#include <iostream>
#include <string>
Expand Down

0 comments on commit 0583582

Please sign in to comment.