Fix Cppcheck warning

This commit is contained in:
Daniel Marjamäki 2017-05-22 10:26:16 +02:00
parent 0cb1c4f221
commit c20dbad424
2 changed files with 0 additions and 9 deletions

View File

@ -26,14 +26,6 @@ QErrorPathItem::QErrorPathItem(const ErrorLogger::ErrorMessage::FileLocation &lo
{
}
QErrorPathItem::QErrorPathItem(const QErrorPathItem &e)
: file(e.file)
, line(e.line)
, col(e.col)
, info(e.info)
{
}
ErrorItem::ErrorItem()
: severity(Severity::none)
, inconclusive(false)

View File

@ -53,7 +53,6 @@ class QErrorPathItem {
public:
QErrorPathItem() : line(0), col(-1) {}
explicit QErrorPathItem(const ErrorLogger::ErrorMessage::FileLocation &loc);
explicit QErrorPathItem(const QErrorPathItem &e);
QString file;
unsigned int line;
int col;