diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-06-21 13:47:07 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-06-21 13:47:07 -0700 |
commit | 8f59afd62d6d28059efb6caad1232254146daddd (patch) | |
tree | ec0b40baef939c1e24ac60cb4f667e206c031dc6 | |
parent | 638557de3ec600ebe240e2f25e337028ce453ba2 (diff) | |
download | yosys-8f59afd62d6d28059efb6caad1232254146daddd.tar.gz yosys-8f59afd62d6d28059efb6caad1232254146daddd.tar.bz2 yosys-8f59afd62d6d28059efb6caad1232254146daddd.zip |
Revert "Stab in the dark with aig_map from dict -> std::map"
This reverts commit 70ee10b650e01b7b262baa5c6fda934fb860dfce.
-rw-r--r-- | backends/aiger/xaiger.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/aiger/xaiger.cc b/backends/aiger/xaiger.cc index b7a5d5761..6718e4f2c 100644 --- a/backends/aiger/xaiger.cc +++ b/backends/aiger/xaiger.cc @@ -71,7 +71,7 @@ struct XAigerWriter vector<int> aig_outputs; int aig_m = 0, aig_i = 0, aig_l = 0, aig_o = 0, aig_a = 0; - std::map<SigBit, int> aig_map; + dict<SigBit, int> aig_map; dict<SigBit, int> ordered_outputs; vector<Cell*> box_list; |