aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2017-07-24 09:36:38 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2017-07-24 11:24:03 +0000
commitf489dde33403e432286bddced04d2077aced02e0 (patch)
treef4ca783a7052039ec5767a830254e613a2e35fb1
parentc805462346cbdfb7763e792c0302f8c0b28df1b8 (diff)
Export equality operator for qbs::PropertyMap
This was forgotten when the operator was introduced. Change-Id: Ib1a869e0b42f61bcb845077124c89478a0064783 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
-rw-r--r--src/lib/corelib/api/projectdata.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/corelib/api/projectdata.h b/src/lib/corelib/api/projectdata.h
index 9f9dafcc7..076b76504 100644
--- a/src/lib/corelib/api/projectdata.h
+++ b/src/lib/corelib/api/projectdata.h
@@ -63,8 +63,8 @@ class PropertyMapPrivate;
class PropertyMap;
-bool operator==(const PropertyMap &pm1, const PropertyMap &pm2);
-bool operator!=(const PropertyMap &pm1, const PropertyMap &pm2);
+QBS_EXPORT bool operator==(const PropertyMap &pm1, const PropertyMap &pm2);
+QBS_EXPORT bool operator!=(const PropertyMap &pm1, const PropertyMap &pm2);
class QBS_EXPORT PropertyMap
{