[LCG] Remove a dead declaration. This stopped being used when I switched
authorChandler Carruth <chandlerc@gmail.com>
Thu, 17 Apr 2014 09:41:54 +0000 (09:41 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Thu, 17 Apr 2014 09:41:54 +0000 (09:41 +0000)
to a more normal move operation on the graph itself. The definition
already got removed, but I missed the declaration.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206455 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/LazyCallGraph.h

index faf9348f711fff8596a18f842cf008c777cc58ad..d22f2cf8db0b730ab725ad435ee8f3be9e9395d6 100644 (file)
@@ -186,9 +186,6 @@ public:
     /// \brief Constructor used when copying a node from one graph to another.
     Node(LazyCallGraph &G, const Node &OtherN);
 
-    /// \brief Constructor used when moving a node from one graph to another.
-    Node(LazyCallGraph &G, Node &&OtherN);
-
   public:
     typedef LazyCallGraph::iterator iterator;