Fixed missing initialization of device_scaling in LayoutToNetlist.

This commit is contained in:
Matthias Koefferlein 2019-07-24 20:49:56 +02:00
parent afb5cea576
commit 9cad9ca024
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ namespace db
// the iterator provides the hierarchical selection (enabling/disabling cells etc.)
LayoutToNetlist::LayoutToNetlist (const db::RecursiveShapeIterator &iter)
: m_iter (iter), m_layout_index (0), m_netlist_extracted (false), m_is_flat (false)
: m_iter (iter), m_layout_index (0), m_netlist_extracted (false), m_is_flat (false), m_device_scaling (1.0)
{
// check the iterator
if (iter.has_complex_region () || iter.region () != db::Box::world ()) {