aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/executor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/buildgraph/executor.h')
-rw-r--r--src/lib/corelib/buildgraph/executor.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/corelib/buildgraph/executor.h b/src/lib/corelib/buildgraph/executor.h
index 1f6bfc7de..a1bb26c05 100644
--- a/src/lib/corelib/buildgraph/executor.h
+++ b/src/lib/corelib/buildgraph/executor.h
@@ -107,7 +107,8 @@ private:
bool operator() (const BuildGraphNode *x, const BuildGraphNode *y) const;
};
- typedef std::priority_queue<Artifact *, std::vector<BuildGraphNode *>, ComparePriority> Leaves;
+ typedef std::priority_queue<BuildGraphNode *, std::vector<BuildGraphNode *>,
+ ComparePriority> Leaves;
void doBuild();
void prepareAllNodes();