diff --git a/src/linkgraph/linkgraphjob.h b/src/linkgraph/linkgraphjob.h --- a/src/linkgraph/linkgraphjob.h +++ b/src/linkgraph/linkgraphjob.h @@ -160,9 +160,9 @@ public: * @return Pair of the edge currently pointed to and the ID of its * other end. */ - SmallPair operator*() const + std::pair operator*() const { - return SmallPair(this->current, Edge(this->base[this->current], this->base_anno[this->current])); + return std::pair(this->current, Edge(this->base[this->current], this->base_anno[this->current])); } /**