Skip to content

Commit c619302

Browse files
committed
Add missing cstdint header includes to some files
See #1957
1 parent ac3c067 commit c619302

12 files changed

+12
-0
lines changed

src/expire-output.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
#include "tile.hpp"
1414

15+
#include <cstdint>
1516
#include <string>
1617
#include <utility>
1718

src/expire-tiles.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* For a full list of authors see the git log.
1111
*/
1212

13+
#include <cstdint>
1314
#include <memory>
1415
#include <string_view>
1516
#include <unordered_set>

src/flex-index.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
*/
1212

1313
#include <cassert>
14+
#include <cstdint>
1415
#include <stdexcept>
1516
#include <string>
1617
#include <vector>

src/flex-write.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
#include <algorithm>
1818
#include <cmath>
19+
#include <cstdint>
1920
#include <cstdlib>
2021
#include <cstring>
2122
#include <limits>

src/gazetteer-style.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* For a full list of authors see the git log.
1111
*/
1212

13+
#include <cstdint>
1314
#include <memory>
1415
#include <string>
1516
#include <tuple>

src/gen/gen-base.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#include "pgsql.hpp"
1515
#include "util.hpp"
1616

17+
#include <cstdint>
1718
#include <cstdlib>
1819
#include <string>
1920
#include <vector>

src/gen/osm2pgsql-gen.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
#include <array>
4747
#include <cassert>
4848
#include <chrono>
49+
#include <cstdint>
4950
#include <cstdlib>
5051
#include <cstring>
5152
#include <getopt.h>

src/gen/params.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
#include "logging.hpp"
1414

15+
#include <cstdint>
1516
#include <map>
1617
#include <string>
1718
#include <variant>

src/middle-pgsql.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
*/
1717

1818
#include <cassert>
19+
#include <cstdint>
1920
#include <cstdlib>
2021
#include <memory>
2122
#include <stdexcept>

src/pgsql-capabilities.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* For a full list of authors see the git log.
1111
*/
1212

13+
#include <cstdint>
1314
#include <string>
1415

1516
class pg_conn_t;

0 commit comments

Comments
 (0)