mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 21:15:33 +08:00
refs #937 Resolved clazy warnings: rule of three.
This commit is contained in:
@@ -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)
|
||||
{ }
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user