aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/rescuableartifactdata.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2016-12-09 18:48:49 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2016-12-14 09:08:36 +0000
commit28f4e35e28bb6b46aae858dc6a7b3f2e0a161074 (patch)
tree6e0b937677dbcfc93a81577a26da51ce60e3d475 /src/lib/corelib/buildgraph/rescuableartifactdata.h
parent35527c841a95543f3a94bb2167beeb62c6ecec6e (diff)
Replace QVariantMap with PropertyMapPtr in RescuableArtifactData
So the map can potentially be shared when storing the build graph. Change-Id: I7f9cf4867e337606c169346ae7242125f0d21a0d Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/lib/corelib/buildgraph/rescuableartifactdata.h')
-rw-r--r--src/lib/corelib/buildgraph/rescuableartifactdata.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/corelib/buildgraph/rescuableartifactdata.h b/src/lib/corelib/buildgraph/rescuableartifactdata.h
index 0f6d8ae40..23685fa0d 100644
--- a/src/lib/corelib/buildgraph/rescuableartifactdata.h
+++ b/src/lib/corelib/buildgraph/rescuableartifactdata.h
@@ -43,6 +43,7 @@
#include "forward_decls.h"
#include <language/filetags.h>
+#include <language/forward_decls.h>
#include <language/property.h>
#include <tools/filetime.h>
@@ -85,7 +86,7 @@ public:
// Only needed for API purposes
FileTags fileTags;
- QVariantMap properties;
+ PropertyMapPtr properties;
};
typedef QHash<QString, RescuableArtifactData> AllRescuableArtifactData;