From 1dfa6aff67d3a762b696adb24256ac1568aa7218 Mon Sep 17 00:00:00 2001 From: Myrtle Shah Date: Fri, 15 Oct 2021 13:32:22 +0100 Subject: [PATCH] Add missing "#include"s Signed-off-by: Myrtle Shah --- bora/src/SlicingPlotWidget.cpp | 1 + bora/src/bora/NodeSets.h | 1 + coloquinte/src/coloquinte/optimization_subproblems.hxx | 1 + coloquinte/src/solvers.cxx | 1 + coloquinte/src/topologies.cxx | 1 + crlcore/src/ccore/alliance/vst/VhdlBit.cpp | 1 + crlcore/src/ccore/spice/SpiceBit.cpp | 1 + hurricane/src/hurricane/DBo.cpp | 1 + hurricane/src/hurricane/hurricane/IntervalTree.h | 2 ++ 9 files changed, 10 insertions(+) diff --git a/bora/src/SlicingPlotWidget.cpp b/bora/src/SlicingPlotWidget.cpp index c3418bec..89995b0b 100644 --- a/bora/src/SlicingPlotWidget.cpp +++ b/bora/src/SlicingPlotWidget.cpp @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include diff --git a/bora/src/bora/NodeSets.h b/bora/src/bora/NodeSets.h index c0a32025..e57bb952 100644 --- a/bora/src/bora/NodeSets.h +++ b/bora/src/bora/NodeSets.h @@ -17,6 +17,7 @@ #ifndef BORA_NODE_SETS_H #define BORA_NODE_SETS_H +#include #include #include #include "BoxSet.h" diff --git a/coloquinte/src/coloquinte/optimization_subproblems.hxx b/coloquinte/src/coloquinte/optimization_subproblems.hxx index e0849b23..3ccbdfcc 100644 --- a/coloquinte/src/coloquinte/optimization_subproblems.hxx +++ b/coloquinte/src/coloquinte/optimization_subproblems.hxx @@ -9,6 +9,7 @@ #include #include #include +#include namespace coloquinte{ diff --git a/coloquinte/src/solvers.cxx b/coloquinte/src/solvers.cxx index 57f0fbc1..27d75bae 100644 --- a/coloquinte/src/solvers.cxx +++ b/coloquinte/src/solvers.cxx @@ -4,6 +4,7 @@ #include #include #include +#include namespace coloquinte{ namespace gp{ diff --git a/coloquinte/src/topologies.cxx b/coloquinte/src/topologies.cxx index d36cee41..c9b952f0 100644 --- a/coloquinte/src/topologies.cxx +++ b/coloquinte/src/topologies.cxx @@ -9,6 +9,7 @@ #include #include #include +#include namespace coloquinte{ using edge_t = std::pair; diff --git a/crlcore/src/ccore/alliance/vst/VhdlBit.cpp b/crlcore/src/ccore/alliance/vst/VhdlBit.cpp index 9131d351..09b9e3ea 100644 --- a/crlcore/src/ccore/alliance/vst/VhdlBit.cpp +++ b/crlcore/src/ccore/alliance/vst/VhdlBit.cpp @@ -17,6 +17,7 @@ #include "crlcore/VhdlBit.h" #include "crlcore/VhdlSignal.h" +#include namespace Vhdl { diff --git a/crlcore/src/ccore/spice/SpiceBit.cpp b/crlcore/src/ccore/spice/SpiceBit.cpp index 128198dd..1529251a 100644 --- a/crlcore/src/ccore/spice/SpiceBit.cpp +++ b/crlcore/src/ccore/spice/SpiceBit.cpp @@ -16,6 +16,7 @@ #include "crlcore/SpiceBit.h" +#include namespace Spice { diff --git a/hurricane/src/hurricane/DBo.cpp b/hurricane/src/hurricane/DBo.cpp index 3f9d15b0..adf2aabb 100644 --- a/hurricane/src/hurricane/DBo.cpp +++ b/hurricane/src/hurricane/DBo.cpp @@ -38,6 +38,7 @@ #include "hurricane/Error.h" #include "hurricane/Warning.h" +#include namespace Hurricane { diff --git a/hurricane/src/hurricane/hurricane/IntervalTree.h b/hurricane/src/hurricane/hurricane/IntervalTree.h index b026cbf0..7d4673b2 100644 --- a/hurricane/src/hurricane/hurricane/IntervalTree.h +++ b/hurricane/src/hurricane/hurricane/IntervalTree.h @@ -40,6 +40,8 @@ #include "hurricane/Interval.h" #include "hurricane/RbTree.h" +#include + namespace Hurricane {