Skip to content

Commit d2d7e6d

Browse files
committed
lint
1 parent 66aa14f commit d2d7e6d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/support/graph_traversal.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ template<typename T, typename SuccessorFunction> class Graph {
4141
template<typename It, typename Sen>
4242
#endif
4343
Graph(It rootsBegin, Sen rootsEnd, SuccessorFunction successors)
44-
: roots(rootsBegin, rootsEnd), successors(std::move(successors)) {}
44+
: roots(rootsBegin, rootsEnd), successors(std::move(successors)) {
45+
}
4546

4647
// Traverse the graph depth-first, calling `successors` exactly once for each
4748
// node (unless the node appears multiple times in `roots`). Return the set of

0 commit comments

Comments
 (0)