summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Mollier <emollier@debian.org>2023-12-20 16:50:12 +0100
committerÉtienne Mollier <emollier@debian.org>2023-12-20 16:50:12 +0100
commite185b079798160cae1b3c05296424adf7e461325 (patch)
treefd0dc288b03c211e43a8e50c192e076b7e5c98ed
parent1a4cf51a79a3fbcfca78fd9d29418f6423f53bdf (diff)
fix a new wave of ftbfs with gcc-13.
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1059139 Forwarded: https://github.com/paoloshasta/shasta/pull/20 Last-Update: 2023-12-20 Last-Update: 2023-12-20 Gbp-Pq: Name gcc-13-bis.patch
-rw-r--r--src/CompactUndirectedGraph.hpp1
-rw-r--r--src/mode3-PathGraph.cpp1
-rw-r--r--src/shortestPath.hpp1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/CompactUndirectedGraph.hpp b/src/CompactUndirectedGraph.hpp
index 7284b5d..ef80a40 100644
--- a/src/CompactUndirectedGraph.hpp
+++ b/src/CompactUndirectedGraph.hpp
@@ -26,6 +26,7 @@
#include <boost/graph/iteration_macros.hpp>
// Standard library.
+#include "algorithm.hpp"
#include "array.hpp"
#include "iostream.hpp"
#include <limits>
diff --git a/src/mode3-PathGraph.cpp b/src/mode3-PathGraph.cpp
index d748b84..200f44b 100644
--- a/src/mode3-PathGraph.cpp
+++ b/src/mode3-PathGraph.cpp
@@ -13,6 +13,7 @@ using namespace mode3;
#include <boost/icl/interval_set.hpp>
// Standard library.
+#include <bitset>
#include "fstream.hpp"
#include "iostream.hpp"
#include <queue>
diff --git a/src/shortestPath.hpp b/src/shortestPath.hpp
index b33db0e..7bb367b 100644
--- a/src/shortestPath.hpp
+++ b/src/shortestPath.hpp
@@ -32,6 +32,7 @@
#include <boost/graph/iteration_macros.hpp>
// Standard library.
+#include "algorithm.hpp"
#include "cstddef.hpp"
#include "cstdint.hpp"
#include <queue>