File diff r24207:ca91fa5d58e1 → r24208:240daa324e1b
src/linkgraph/linkgraphjob.h
Show inline comments
 
@@ -160,9 +160,9 @@ public:
 
		 * @return Pair of the edge currently pointed to and the ID of its
 
		 *         other end.
 
		 */
 
		SmallPair<NodeID, Edge> operator*() const
 
		std::pair<NodeID, Edge> operator*() const
 
		{
 
			return SmallPair<NodeID, Edge>(this->current, Edge(this->base[this->current], this->base_anno[this->current]));
 
			return std::pair<NodeID, Edge>(this->current, Edge(this->base[this->current], this->base_anno[this->current]));
 
		}
 

	
 
		/**