From: David Blaikie Date: Wed, 5 Aug 2015 21:16:46 +0000 (+0000) Subject: Drop the defaulted CallGraph move ctor, since it's unused and MSVC doesn't support... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e9d6ca111d7f73e1c91771bf3896cca3175d5efa;p=oota-llvm.git 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 --- 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;