Drop the defaulted CallGraph move ctor, since it's unused and MSVC doesn't support...
authorDavid Blaikie <dblaikie@gmail.com>
Wed, 5 Aug 2015 21:16:46 +0000 (21:16 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Wed, 5 Aug 2015 21:16:46 +0000 (21:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244135 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/CallGraph.h

index 06fed90c7f67947a0f872c6e75e917ef1d0cee44..651d1901f3e7e444cfafee88e4e01c868692ddc8 100644 (file)
@@ -106,10 +106,6 @@ class CallGraph {
 
 public:
   CallGraph(Module &M);
-  // Default move ctor is fine, the dtor just does things to CallsExternalNode
-  // (if non-null) and the values in the FunctionMap, all of which should be
-  // null post-move, so no-op the dtor on the moved-from side.
-  CallGraph(CallGraph &&) = default;
   ~CallGraph();
 
   void print(raw_ostream &OS) const;