Skip to content

Commit 4736534

Browse files
committed
Fix #2707 include cstdint
- (C++) Adding include cstdint - (C++) fixing warning -Wtemplate-id-cdtor - Update NEWS & release_notes
1 parent ae34f13 commit 4736534

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+94
-15
lines changed

NEWS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,14 @@
1010

1111
### pgRouting 3.7.2 Release Notes
1212

13+
To see all issues & pull requests closed by this release see the [Git closed
14+
milestone for 3.7.2
15+
](https://github.com/pgRouting/pgrouting/issues?utf8=%E2%9C%93&q=milestone%3A%22Release%203.7.2%22)
16+
1317
**Bug fixes**
1418

19+
* [#2707](https://github.com/pgRouting/pgrouting/pull/2707) Build failure in
20+
pgRouting 3.7.1 on Alpine
1521
* [#2706](https://github.com/pgRouting/pgrouting/pull/2706) winnie crashing
1622
on pgr_betweennessCentrality
1723

doc/src/release_notes.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,14 @@ pgRouting 3.7
4141
pgRouting 3.7.2 Release Notes
4242
-------------------------------------------------------------------------------
4343

44+
To see all issues & pull requests closed by this release see the `Git closed
45+
milestone for 3.7.2
46+
<https://github.com/pgRouting/pgrouting/issues?utf8=%E2%9C%93&q=milestone%3A%22Release%203.7.2%22>`__
47+
4448
.. rubric:: Bug fixes
4549

50+
* `#2707 <https://github.com/pgRouting/pgrouting/pull/2707>`__ Build failure in
51+
pgRouting 3.7.1 on Alpine
4652
* `#2706 <https://github.com/pgRouting/pgrouting/pull/2706>`__ winnie crashing
4753
on pgr_betweennessCentrality
4854

include/astar/astar.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3535
#include <limits>
3636
#include <set>
3737
#include <map>
38+
#include <cstdint>
3839

3940
#include <boost/graph/astar_search.hpp>
4041

include/bdAstar/bdAstar.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3434
#include <map>
3535
#include <set>
3636
#include <deque>
37+
#include <cstdint>
3738

3839
#include "cpp_common/bidirectional.hpp"
3940
#include "cpp_common/basePath_SSEC.hpp"

include/bellman_ford/bellman_ford.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3838
#include <functional>
3939
#include <limits>
4040
#include <map>
41+
#include <cstdint>
42+
4143
#include <boost/config.hpp>
4244
#include <boost/graph/adjacency_list.hpp>
4345
#include <boost/graph/bellman_ford_shortest_paths.hpp>

include/bellman_ford/edwardMoore.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3030
#include <deque>
3131
#include <set>
3232
#include <map>
33+
#include <cstdint>
3334

3435
#include "cpp_common/basePath_SSEC.hpp"
3536
#include "cpp_common/base_graph.hpp"

include/bgraph/graph_to_edges.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2929
#include <vector>
3030
#include <map>
3131
#include <utility>
32+
#include <cstdint>
3233

3334
#include <boost/config.hpp>
3435
#include <boost/graph/adjacency_list.hpp>

include/bgraph/line_graph.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2727
#define INCLUDE_BGRAPH_LINE_GRAPH_HPP_
2828

2929
#include <map>
30+
#include <cstdint>
3031

3132
#include <boost/config.hpp>
3233
#include <boost/graph/adjacency_list.hpp>

include/breadthFirstSearch/binaryBreadthFirstSearch.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3232
#include <vector>
3333
#include <set>
3434
#include <map>
35+
#include <cstdint>
3536

3637
#include "cpp_common/basePath_SSEC.hpp"
3738
#include "cpp_common/base_graph.hpp"

include/breadthFirstSearch/breadthFirstSearch.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2727

2828
#include <vector>
2929
#include <set>
30+
#include <cstdint>
3031

3132
#include <boost/config.hpp>
3233
#include <boost/graph/breadth_first_search.hpp>

0 commit comments

Comments
 (0)