Fixed three compiler warnings.

This commit is contained in:
Matthias Koefferlein 2019-03-04 17:58:40 +01:00
parent bacd565d05
commit c07d7e92d4
3 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@ EdgePairs::EdgePairs (EdgePairsDelegate *delegate)
} }
EdgePairs::EdgePairs (const EdgePairs &other) EdgePairs::EdgePairs (const EdgePairs &other)
: mp_delegate (other.mp_delegate->clone ()) : gsi::ObjectBase (), mp_delegate (other.mp_delegate->clone ())
{ {
// .. nothing yet .. // .. nothing yet ..
} }

View File

@ -97,7 +97,7 @@ Edges::Edges (EdgesDelegate *delegate)
} }
Edges::Edges (const Edges &other) Edges::Edges (const Edges &other)
: mp_delegate (other.mp_delegate->clone ()) : gsi::ObjectBase (), mp_delegate (other.mp_delegate->clone ())
{ {
// .. nothing yet .. // .. nothing yet ..
} }

View File

@ -190,7 +190,7 @@ Region::Region (RegionDelegate *delegate)
} }
Region::Region (const Region &other) Region::Region (const Region &other)
: mp_delegate (other.mp_delegate->clone ()) : gsi::ObjectBase (), mp_delegate (other.mp_delegate->clone ())
{ {
// .. nothing yet .. // .. nothing yet ..
} }