diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-25 16:22:08 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-25 16:22:08 +0200 |
commit | a279720fc185cf32599b4d45c74e8752ca6b514f (patch) | |
tree | 1399900c985b99544ec2686c29c5c72456dfb5b8 /common/nextpnr.h | |
parent | 069d78ab804fe53f21c641889035f30b3b6b8245 (diff) | |
parent | bee6bc461d4836fd39bf2142ae1d6b004b514bab (diff) | |
download | nextpnr-a279720fc185cf32599b4d45c74e8752ca6b514f.tar.gz nextpnr-a279720fc185cf32599b4d45c74e8752ca6b514f.tar.bz2 nextpnr-a279720fc185cf32599b4d45c74e8752ca6b514f.zip |
merge
Diffstat (limited to 'common/nextpnr.h')
-rw-r--r-- | common/nextpnr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h index df9d7e3e..71a52758 100644 --- a/common/nextpnr.h +++ b/common/nextpnr.h @@ -207,13 +207,13 @@ struct BaseCtx IdString::initialize_add(this, "", 0); IdString::initialize_arch(this); } - + ~BaseCtx() { - for(auto &item : nets) { + for (auto &item : nets) { delete item.second; } - for(auto &item : cells) { + for (auto &item : cells) { delete item.second; } delete idstring_str_to_idx; |