aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/artifact.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-06-28 14:03:43 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2018-06-29 08:09:02 +0000
commitfac2f0af3d8a051bba02fe448e984a3c0e66739f (patch)
tree70fd11b79cb813a52a7b14eca50fc624f702789d /src/lib/corelib/buildgraph/artifact.cpp
parentc5d9a5f566bd960b987c2bbd1ec1fb46acf8ea04 (diff)
Store the "out of date" flag per transformer rather than per artifact
That's a better fit. Change-Id: I3eff4ce461342b2966196da4e9aeff35544a38c4 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/lib/corelib/buildgraph/artifact.cpp')
-rw-r--r--src/lib/corelib/buildgraph/artifact.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/corelib/buildgraph/artifact.cpp b/src/lib/corelib/buildgraph/artifact.cpp
index 667194356..5e38c3b36 100644
--- a/src/lib/corelib/buildgraph/artifact.cpp
+++ b/src/lib/corelib/buildgraph/artifact.cpp
@@ -145,7 +145,6 @@ void Artifact::load(PersistentPool &pool)
artifactType = static_cast<ArtifactType>(pool.load<quint8>());
alwaysUpdated = pool.load<bool>();
oldDataPossiblyPresent = pool.load<bool>();
- pool.load(knownOutOfDate);
}
void Artifact::store(PersistentPool &pool)
@@ -163,7 +162,6 @@ void Artifact::store(PersistentPool &pool)
pool.store(static_cast<quint8>(artifactType));
pool.store(alwaysUpdated);
pool.store(oldDataPossiblyPresent);
- pool.store(knownOutOfDate);
}
} // namespace Internal