aboutsummaryrefslogtreecommitdiffstats
path: root/common/nextpnr.h
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2019-06-12 18:34:34 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2019-06-12 18:34:34 +0200
commit856760599e51bd4c6da34112c993dc8bfb995f36 (patch)
tree02ea7d93a960eb5d177b7a9301693710b6724884 /common/nextpnr.h
parentd9b0bac248a12466cd2b62d02ec11b2e60d25019 (diff)
downloadnextpnr-856760599e51bd4c6da34112c993dc8bfb995f36.tar.gz
nextpnr-856760599e51bd4c6da34112c993dc8bfb995f36.tar.bz2
nextpnr-856760599e51bd4c6da34112c993dc8bfb995f36.zip
Use properties for settings and save in json
Diffstat (limited to 'common/nextpnr.h')
-rw-r--r--common/nextpnr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h
index 3b17920d..66134456 100644
--- a/common/nextpnr.h
+++ b/common/nextpnr.h
@@ -541,7 +541,7 @@ struct BaseCtx
mutable std::vector<const std::string *> *idstring_idx_to_str;
// Project settings and config switches
- std::unordered_map<IdString, std::string> settings;
+ std::unordered_map<IdString, Property> settings;
// Placed nets and cells.
std::unordered_map<IdString, std::unique_ptr<NetInfo>> nets;