We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cb1c4f commit c20dbadCopy full SHA for c20dbad
2 files changed
gui/erroritem.cpp
@@ -26,14 +26,6 @@ QErrorPathItem::QErrorPathItem(const ErrorLogger::ErrorMessage::FileLocation &lo
26
{
27
}
28
29
-QErrorPathItem::QErrorPathItem(const QErrorPathItem &e)
30
- : file(e.file)
31
- , line(e.line)
32
- , col(e.col)
33
- , info(e.info)
34
-{
35
-}
36
-
37
ErrorItem::ErrorItem()
38
: severity(Severity::none)
39
, inconclusive(false)
gui/erroritem.h
@@ -53,7 +53,6 @@ class QErrorPathItem {
53
public:
54
QErrorPathItem() : line(0), col(-1) {}
55
explicit QErrorPathItem(const ErrorLogger::ErrorMessage::FileLocation &loc);
56
- explicit QErrorPathItem(const QErrorPathItem &e);
57
QString file;
58
unsigned int line;
59
int col;
0 commit comments