(svn r26331) -Fix: some inconsistencies regarding link graph (job) IDs.

This commit is contained in:
fonsinchen
2014-02-10 20:13:07 +00:00
parent 82ece7db12
commit e37656f2e5
4 changed files with 6 additions and 3 deletions

View File

@@ -21,7 +21,7 @@ class Path;
typedef std::list<Path *> PathList;
/** Type of the pool for link graph jobs. */
typedef Pool<LinkGraphJob, LinkGraphJobID, 32, 0xFFFFFF> LinkGraphJobPool;
typedef Pool<LinkGraphJob, LinkGraphJobID, 32, 0xFFFF> LinkGraphJobPool;
/** The actual pool with link graph jobs. */
extern LinkGraphJobPool _link_graph_job_pool;