mirror of
https://github.com/KLayout/klayout.git
synced 2026-09-05 09:02:53 +02:00
Fixed three compiler warnings.
This commit is contained in:
@@ -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 ..
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user