include stdint.h in Osm.h

This commit is contained in:
Patrick Brosi 2023-11-07 01:02:25 +01:00
parent 9d00fa2d75
commit be3c41b784
2 changed files with 6 additions and 1 deletions

View file

@ -5,10 +5,12 @@
#ifndef PFAEDLE_OSM_OSM_H_ #ifndef PFAEDLE_OSM_OSM_H_
#define PFAEDLE_OSM_OSM_H_ #define PFAEDLE_OSM_OSM_H_
#include <stdint.h>
#include <set> #include <set>
#include <string> #include <string>
#include <utility>
#include <unordered_map> #include <unordered_map>
#include <utility>
#include <vector> #include <vector>
namespace pfaedle { namespace pfaedle {

View file

@ -5,8 +5,11 @@
#ifndef PFAEDLE_OSM_OSMFILTER_H_ #ifndef PFAEDLE_OSM_OSMFILTER_H_
#define PFAEDLE_OSM_OSMFILTER_H_ #define PFAEDLE_OSM_OSMFILTER_H_
#include <stdint.h>
#include <string> #include <string>
#include <vector> #include <vector>
#include "pfaedle/osm/Osm.h" #include "pfaedle/osm/Osm.h"
#include "pfaedle/osm/OsmReadOpts.h" #include "pfaedle/osm/OsmReadOpts.h"