diff options
author | gatecat <gatecat@ds0.me> | 2023-01-20 09:04:41 +0100 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2023-01-20 09:04:41 +0100 |
commit | 7845b665125074d6cc9d7b71d1d69f8c261c1d50 (patch) | |
tree | 32792ec9c0ea391c0084a8968d2853151a1a4113 /machxo2 | |
parent | 06eaffc57cdd9f4083a4ed2bab435771a8121ad0 (diff) | |
download | nextpnr-7845b665125074d6cc9d7b71d1d69f8c261c1d50.tar.gz nextpnr-7845b665125074d6cc9d7b71d1d69f8c261c1d50.tar.bz2 nextpnr-7845b665125074d6cc9d7b71d1d69f8c261c1d50.zip |
Add missing <set> includes
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'machxo2')
-rw-r--r-- | machxo2/arch.h | 1 | ||||
-rw-r--r-- | machxo2/config.cc | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/machxo2/arch.h b/machxo2/arch.h index 489a44ab..214d8bb2 100644 --- a/machxo2/arch.h +++ b/machxo2/arch.h @@ -22,6 +22,7 @@ #define MACHXO2_ARCH_H #include <cstdint> +#include <set> #include "base_arch.h" #include "nextpnr_namespaces.h" diff --git a/machxo2/config.cc b/machxo2/config.cc index 0c5b0741..34c4954e 100644 --- a/machxo2/config.cc +++ b/machxo2/config.cc @@ -21,7 +21,9 @@ #include "config.h" #include <boost/range/adaptor/reversed.hpp> #include <iomanip> +#include <set> #include "log.h" + NEXTPNR_NAMESPACE_BEGIN #define fmt(x) (static_cast<const std::ostringstream &>(std::ostringstream() << x).str()) |