refs #937 Resolved clazy warnings: rule of three.

This commit is contained in:
Mathew Sutcliffe
2017-04-15 01:28:23 +01:00
parent 3ea9e33e6b
commit b20ebd6dfd
15 changed files with 60 additions and 13 deletions

View File

@@ -22,9 +22,6 @@ namespace BlackMisc
{
CUrlList::CUrlList() { }
CUrlList::CUrlList(const CUrlList &other) : CSequence<CUrl>(other)
{ }
CUrlList::CUrlList(const CSequence<CUrl> &other) :
CSequence<CUrl>(other)
{ }

View File

@@ -37,9 +37,6 @@ namespace BlackMisc
//! Default constructor.
CUrlList();
//! Copy constructor (because of mutex)
CUrlList(const CUrlList &other);
//! Construct from a base class object.
CUrlList(const CSequence<CUrl> &other);