File diff r24207:ca91fa5d58e1 → r24208:240daa324e1b
src/linkgraph/linkgraphjob.h
Show inline comments
 
@@ -157,15 +157,15 @@ public:
 

	
 
		/**
 
		 * Dereference.
 
		 * @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]));
 
		}
 

	
 
		/**
 
		 * Dereference. Has to be repeated here as operator* is different than
 
		 * in LinkGraph::EdgeWrapper.
 
		 * @return Fake pointer to pair of NodeID/Edge.