Skip to content

Commit

Permalink
More missing cstdint headers
Browse files Browse the repository at this point in the history
Closes #990, References #743
  • Loading branch information
robe2 committed Nov 12, 2023
1 parent 47e56ee commit 23e07a5
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 4 deletions.
7 changes: 4 additions & 3 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Changes in 3.9.5
2023-11-xx
## Changes in 3.9.5
2023-11-12

- Bug fixes / improvements:
- GEOSUnaryUnion: Fix crash on collection containing empty point (GH-830, Dan Baston)
Expand All @@ -10,9 +10,10 @@ Changes in 3.9.5
- GEOSClipByRect: Fix case with POINT EMPTY (GH-913, Mike Taves)
- Remove undefined behaviour in use of null PrecisionModel (GH-931, Jeff Walton)
- Skip over testing empty distances for mixed collections (GH-979, Paul Ramsey)
- Add missing cstdint headers (GH-990, GH-743, Regina Obe, Sergei Trofimovich)


Changes in 3.9.4
## Changes in 3.9.4
2022-11-14

- Bug fixes / improvements:
Expand Down
4 changes: 3 additions & 1 deletion include/geos/geomgraph/Depth.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@
#ifndef GEOS_GEOMGRAPH_DEPTH_H
#define GEOS_GEOMGRAPH_DEPTH_H

#include <cstdint>
#include <string>

#include <geos/export.h>
#include <geos/geom/Location.h>
#include <string>

#include <geos/inline.h>

Expand Down
1 change: 1 addition & 0 deletions include/geos/io/WKTWriter.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

#include <string>
#include <cctype>
#include <cstdint>

#ifdef _MSC_VER
#pragma warning(push)
Expand Down
2 changes: 2 additions & 0 deletions include/geos/operation/overlayng/OverlayLabel.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

#pragma once

#include <cstdint>

#include <geos/geom/Location.h>
#include <geos/geom/Position.h>
#include <geos/export.h>
Expand Down
1 change: 1 addition & 0 deletions include/geos/shape/fractal/HilbertCode.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

#include <geos/export.h>
#include <string>
#include <cstdint>

// Forward declarations
namespace geos {
Expand Down
2 changes: 2 additions & 0 deletions include/geos/shape/fractal/MortonCode.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@

#include <geos/export.h>
#include <string>
#include <cstdint>


// Forward declarations
namespace geos {
Expand Down

0 comments on commit 23e07a5

Please sign in to comment.