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 issue 2680 fails to compile under mingw64 gcc #2692

Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ milestone for 3.7.1

**Bug fixes**

* [#2680](https://github.com/pgRouting/pgrouting/pull/2680) fails to compile
under mingw64 gcc 13.2
* [#2689](https://github.com/pgRouting/pgrouting/pull/2689) When point is a
vertex, the withPoints family do not return results.

Expand Down
2 changes: 2 additions & 0 deletions doc/src/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ milestone for 3.7.1

.. rubric:: Bug fixes

* `#2680 <https://github.com/pgRouting/pgrouting/pull/2680>`__ fails to compile
under mingw64 gcc 13.2
* `#2689 <https://github.com/pgRouting/pgrouting/pull/2689>`__ When point is a
vertex, the withPoints family do not return results.

Expand Down
3 changes: 1 addition & 2 deletions include/cpp_common/Dmatrix.hpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
/*PGR-GNU*****************************************************************
File: Dmatrix.hpp

FILE: Dmatrix.h

Copyright (c) 2015 pgRouting developers
Mail: project@pgrouting.org

Expand Down Expand Up @@ -34,6 +32,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#include <vector>
#include <map>
#include <utility>
#include <cstdint>

typedef struct IID_t_rt IID_t_rt;

Expand Down
Loading