summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/linkgraph/linkgraph.h2
-rw-r--r--src/linkgraph/linkgraphjob.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/linkgraph/linkgraph.h b/src/linkgraph/linkgraph.h
index 4f44db827..32f94a3c8 100644
--- a/src/linkgraph/linkgraph.h
+++ b/src/linkgraph/linkgraph.h
@@ -495,7 +495,7 @@ public:
* Get the current size of the component.
* @return Size.
*/
- inline uint16 Size() const { return (uint16)this->nodes.size(); }
+ inline NodeID Size() const { return (NodeID)this->nodes.size(); }
/**
* Get date of last compression.
diff --git a/src/linkgraph/linkgraphjob.h b/src/linkgraph/linkgraphjob.h
index 4913b5a35..f434fa809 100644
--- a/src/linkgraph/linkgraphjob.h
+++ b/src/linkgraph/linkgraphjob.h
@@ -332,7 +332,7 @@ public:
* Get the size of the underlying link graph.
* @return Size.
*/
- inline uint Size() const { return this->link_graph.Size(); }
+ inline NodeID Size() const { return this->link_graph.Size(); }
/**
* Get the cargo of the underlying link graph.