aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/rulenode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/buildgraph/rulenode.cpp')
-rw-r--r--src/lib/corelib/buildgraph/rulenode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/corelib/buildgraph/rulenode.cpp b/src/lib/corelib/buildgraph/rulenode.cpp
index 4bf027bfa..eaccf3c6f 100644
--- a/src/lib/corelib/buildgraph/rulenode.cpp
+++ b/src/lib/corelib/buildgraph/rulenode.cpp
@@ -157,7 +157,7 @@ ArtifactSet RuleNode::currentInputArtifacts() const
foreach (Artifact *targetArtifact, dep->targetArtifacts())
artifactsToCheck += targetArtifact->transformer->outputs;
foreach (Artifact *artifact, artifactsToCheck) {
- if (artifact->fileTags.matches(m_rule->usings))
+ if (artifact->fileTags().matches(m_rule->usings))
s += artifact;
}
}