remove copy constructor

This commit is contained in:
Eism 2019-07-18 15:02:48 +02:00
parent fad963c854
commit 7132bc96ea
2 changed files with 0 additions and 8 deletions

View File

@ -16,12 +16,6 @@ BlockParsedResult::BlockParsedResult(const DecodedInformation &information, bool
m_decodedInformation = information; m_decodedInformation = information;
} }
BlockParsedResult::BlockParsedResult(const BlockParsedResult &other)
{
m_finished = other.m_finished;
m_decodedInformation = other.m_decodedInformation;
}
DecodedInformation BlockParsedResult::getDecodedInformation() DecodedInformation BlockParsedResult::getDecodedInformation()
{ {
return m_decodedInformation; return m_decodedInformation;

View File

@ -46,8 +46,6 @@ public:
BlockParsedResult(const DecodedInformation& information, bool finished); BlockParsedResult(const DecodedInformation& information, bool finished);
BlockParsedResult(const BlockParsedResult& other);
DecodedInformation getDecodedInformation(); DecodedInformation getDecodedInformation();
bool isFinished(); bool isFinished();