Skip to content

Commit 9db20de

Browse files
Address a comment.
1 parent b2afd57 commit 9db20de

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

llvm/include/llvm/ADT/DirectedGraph.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,10 +181,6 @@ template <class NodeType, class EdgeType> class DirectedGraph {
181181

182182
DirectedGraph() = default;
183183
explicit DirectedGraph(NodeType &N) : Nodes() { addNode(N); }
184-
DirectedGraph(const DGraphType &G) = default;
185-
DirectedGraph(DGraphType &&RHS) = default;
186-
DGraphType &operator=(const DGraphType &G) = default;
187-
DGraphType &operator=(DGraphType &&G) = default;
188184

189185
const_iterator begin() const { return Nodes.begin(); }
190186
const_iterator end() const { return Nodes.end(); }

0 commit comments

Comments
 (0)