aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/namevalueitem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/utils/namevalueitem.h')
-rw-r--r--src/libs/utils/namevalueitem.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libs/utils/namevalueitem.h b/src/libs/utils/namevalueitem.h
index 1ec203115a..654b4be5bf 100644
--- a/src/libs/utils/namevalueitem.h
+++ b/src/libs/utils/namevalueitem.h
@@ -60,12 +60,13 @@ public:
return first.operation == second.operation && first.name == second.name
&& first.value == second.value;
}
-
friend bool operator!=(const NameValueItem &first, const NameValueItem &second)
{
return !(first == second);
}
+ friend QTCREATOR_UTILS_EXPORT QDebug operator<<(QDebug debug, const NameValueItem &i);
+
public:
QString name;
QString value;
@@ -75,6 +76,4 @@ private:
void apply(NameValueDictionary *dictionary, Operation op) const;
};
-QTCREATOR_UTILS_EXPORT QDebug operator<<(QDebug debug, const NameValueItem &i);
-
} // namespace Utils