1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Drop the defaulted CallGraph move ctor, since it's unused and MSVC doesn't support defaulted move ops

llvm-svn: 244135
This commit is contained in:
David Blaikie 2015-08-05 21:16:46 +00:00
parent 9475c2ee80
commit 4364bfe202

View 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;