File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ struct emap_params
100
100
* Structural uses pattern matching for fully-DSD cells,
101
101
* Hybrid combines the two.
102
102
*/
103
- enum
103
+ enum matching_mode_t
104
104
{
105
105
boolean,
106
106
structural,
Original file line number Diff line number Diff line change @@ -248,6 +248,9 @@ class tech_library
248
248
}
249
249
}
250
250
251
+ tech_library ( const tech_library& ) = delete ;
252
+ tech_library& operator =( const tech_library& ) = delete ;
253
+
251
254
/* ! \brief Get the gates matching the function.
252
255
*
253
256
* Returns a list of gates that match the function represented
@@ -1163,7 +1166,7 @@ class tech_library
1163
1166
bool _use_supergates;
1164
1167
1165
1168
std::vector<gate> const _gates; /* collection of gates */
1166
- super_lib const & _supergates_spec; /* collection of supergates declarations */
1169
+ super_lib const _supergates_spec; /* collection of supergates declarations */
1167
1170
tech_library_params const _ps;
1168
1171
1169
1172
std::vector<standard_cell> const _cells; /* collection of standard cells */
You can’t perform that action at this time.
0 commit comments