aboutsummaryrefslogtreecommitdiffstats
path: root/common/timing_opt.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/timing_opt.h')
-rw-r--r--common/timing_opt.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/timing_opt.h b/common/timing_opt.h
index 746294bb..fda29d30 100644
--- a/common/timing_opt.h
+++ b/common/timing_opt.h
@@ -18,6 +18,7 @@
*/
#include "nextpnr.h"
+#include "settings.h"
NEXTPNR_NAMESPACE_BEGIN
@@ -26,7 +27,7 @@ struct TimingOptCfg : public Settings
// The timing optimiser will *only* optimise cells of these types
// Normally these would only be logic cells (or tiles if applicable), the algorithm makes little sense
// for other cell types
- std::unordered_set<IdString> cellTypes;
+ std::unordered_set<IdString> cellTypes;
};
extern bool timing_opt(Context *ctx, TimingOptCfg cfg);