mirror of https://github.com/KLayout/klayout.git
Fixed three compiler warnings.
This commit is contained in:
parent
bacd565d05
commit
c07d7e92d4
|
|
@ -57,7 +57,7 @@ EdgePairs::EdgePairs (EdgePairsDelegate *delegate)
|
|||
}
|
||||
|
||||
EdgePairs::EdgePairs (const EdgePairs &other)
|
||||
: mp_delegate (other.mp_delegate->clone ())
|
||||
: gsi::ObjectBase (), mp_delegate (other.mp_delegate->clone ())
|
||||
{
|
||||
// .. nothing yet ..
|
||||
}
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ Edges::Edges (EdgesDelegate *delegate)
|
|||
}
|
||||
|
||||
Edges::Edges (const Edges &other)
|
||||
: mp_delegate (other.mp_delegate->clone ())
|
||||
: gsi::ObjectBase (), mp_delegate (other.mp_delegate->clone ())
|
||||
{
|
||||
// .. nothing yet ..
|
||||
}
|
||||
|
|
|
|||
|
|
@ -190,7 +190,7 @@ Region::Region (RegionDelegate *delegate)
|
|||
}
|
||||
|
||||
Region::Region (const Region &other)
|
||||
: mp_delegate (other.mp_delegate->clone ())
|
||||
: gsi::ObjectBase (), mp_delegate (other.mp_delegate->clone ())
|
||||
{
|
||||
// .. nothing yet ..
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue