mirror of https://github.com/KLayout/klayout.git
Fixed issue #1981
This commit is contained in:
parent
f3bed8d4f2
commit
d9233caa42
|
|
@ -495,7 +495,11 @@ private:
|
||||||
|
|
||||||
void set ()
|
void set ()
|
||||||
{
|
{
|
||||||
m_object = db::object_with_properties<T> (*m_basic, m_basic.prop_id ());
|
if (! at_end ()) {
|
||||||
|
m_object = db::object_with_properties<T> (*m_basic, m_basic.prop_id ());
|
||||||
|
} else {
|
||||||
|
m_object = db::object_with_properties<T> ();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue