Skip to content

Commit

Permalink
Problem fixes thanks to issue peters-r#1
Browse files Browse the repository at this point in the history
  • Loading branch information
patinoboh committed Aug 11, 2024
1 parent 0e7a2f8 commit af5673d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Graph.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class Graph
template<class T>
Graph& operator << (T&& rEdge) {
// forward as r-value reference
makeEdge(std::move(rEdge))
makeEdge(std::move(rEdge));
return *this;
}

Expand All @@ -108,7 +108,7 @@ class Graph
* Retrieves a node by the given id.
* @return a pointer to the node or NULL if not found.
*/
Node* Graph::findNodeById(const std::string& id);
Node* findNodeById(const std::string& id);

/** Retrieves all edges that have rSrc as source node and rDst as destination node. */
tEdges findEdges(const Node& rSrc, const Node& rDst);
Expand Down

0 comments on commit af5673d

Please sign in to comment.