(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

@@ -27,7 +27,7 @@ class LinkGraph;
* Type of the pool for link graph components. Each station can be in at up to
* 32 link graphs. So we allow for plenty of them to be created.
*/
typedef Pool<LinkGraph, LinkGraphID, 32, 0xFFFFFF> LinkGraphPool;
typedef Pool<LinkGraph, LinkGraphID, 32, 0xFFFF> LinkGraphPool;
/** The actual pool with link graphs. */
extern LinkGraphPool _link_graph_pool;