aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/clangtools/executableinfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/clangtools/executableinfo.h')
-rw-r--r--src/plugins/clangtools/executableinfo.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plugins/clangtools/executableinfo.h b/src/plugins/clangtools/executableinfo.h
index 5db586b5356..f828afb70ac 100644
--- a/src/plugins/clangtools/executableinfo.h
+++ b/src/plugins/clangtools/executableinfo.h
@@ -32,6 +32,9 @@ public:
QString name;
int level;
QStringList topics;
+
+ friend bool operator==(const ClazyCheck &c1, const ClazyCheck &c2);
+ friend bool operator!=(const ClazyCheck &c1, const ClazyCheck &c2);
};
using ClazyChecks = QVector<ClazyCheck>;
@@ -43,6 +46,9 @@ public:
QVersionNumber version;
QStringList defaultChecks;
ClazyChecks supportedChecks;
+
+ friend bool operator==(const ClazyStandaloneInfo &c1, const ClazyStandaloneInfo &c2);
+ friend bool operator!=(const ClazyStandaloneInfo &c1, const ClazyStandaloneInfo &c2);
};
} // namespace Internal