Skip to content

Commit

Permalink
gcc13 was missing some std header includes (#4154)
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsnolde committed Jun 8, 2023
1 parent efb4d74 commit ed93f30
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## Release Date: 2022-??-?? Valhalla 3.4.1
* **Removed**
* **Bug Fix**
* FIXED: gcc13 was missing some std header includes [#4154](https://github.com/valhalla/valhalla/pull/4154)
* **Enhancement**

## Release Date: 2023-05-11 Valhalla 3.4.0
Expand Down
2 changes: 2 additions & 0 deletions src/baldr/transitdeparture.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#include <stdexcept>

#include "baldr/transitdeparture.h"
#include "midgard/logging.h"

Expand Down
3 changes: 2 additions & 1 deletion src/baldr/transitschedule.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "baldr/transitschedule.h"
#include <stdexcept>

#include "baldr/transitschedule.h"
#include "midgard/logging.h"

namespace valhalla {
Expand Down
1 change: 1 addition & 0 deletions valhalla/baldr/graphconstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define VALHALLA_BALDR_GRAPHCONSTANTS_H_

#include <algorithm>
#include <cstdint>
#include <limits>
#include <string>
#include <unordered_map>
Expand Down

0 comments on commit ed93f30

Please sign in to comment.