diff options
author | myrtle <gatecat@ds0.me> | 2023-01-23 08:51:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-23 08:51:31 +0100 |
commit | 985c688bf6062553fafcfad386fa724b5e956302 (patch) | |
tree | 32792ec9c0ea391c0084a8968d2853151a1a4113 /ecp5/config.cc | |
parent | 06eaffc57cdd9f4083a4ed2bab435771a8121ad0 (diff) | |
parent | 7845b665125074d6cc9d7b71d1d69f8c261c1d50 (diff) | |
download | nextpnr-985c688bf6062553fafcfad386fa724b5e956302.tar.gz nextpnr-985c688bf6062553fafcfad386fa724b5e956302.tar.bz2 nextpnr-985c688bf6062553fafcfad386fa724b5e956302.zip |
Merge pull request #1080 from YosysHQ/gatecat/missing-includes
Add missing <set> includes
Diffstat (limited to 'ecp5/config.cc')
-rw-r--r-- | ecp5/config.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ecp5/config.cc b/ecp5/config.cc index e44326be..ea9ece0d 100644 --- a/ecp5/config.cc +++ b/ecp5/config.cc @@ -20,7 +20,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()) |