Ref T545 Removed redundant constructors that are now inherited.

This commit is contained in:
Mat Sutcliffe
2019-03-02 18:12:47 +00:00
parent c05a32dbd4
commit 1cb21f0a4b
33 changed files with 6 additions and 118 deletions

View File

@@ -22,9 +22,5 @@ namespace BlackMisc
CCoordinateGeodeticList::CCoordinateGeodeticList(const CSequence<CCoordinateGeodetic> &other) :
CSequence<CCoordinateGeodetic>(other)
{ }
CCoordinateGeodeticList::CCoordinateGeodeticList(std::initializer_list<CCoordinateGeodetic> il) :
CSequence<CCoordinateGeodetic>(il)
{ }
} // namespace
} // namespace

View File

@@ -41,9 +41,6 @@ namespace BlackMisc
//! Default constructor.
CCoordinateGeodeticList();
//! Construct by coordinates
CCoordinateGeodeticList(std::initializer_list<CCoordinateGeodetic> coordinates);
//! Construct from a base class object.
CCoordinateGeodeticList(const CSequence<CCoordinateGeodetic> &other);
};