From e9d6ca111d7f73e1c91771bf3896cca3175d5efa Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Wed, 5 Aug 2015 21:16:46 +0000 Subject: [PATCH] Drop the defaulted CallGraph move ctor, since it's unused and MSVC doesn't support defaulted move ops git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244135 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/CallGraph.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/llvm/Analysis/CallGraph.h b/include/llvm/Analysis/CallGraph.h index 06fed90c7f6..651d1901f3e 100644 --- a/include/llvm/Analysis/CallGraph.h +++ b/include/llvm/Analysis/CallGraph.h @@ -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; -- 2.34.1